Skip to content

Commit a682b3e

Browse files
committed
chore: migrate postcss configuration to TypeScript
1 parent 7a98ec8 commit a682b3e

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

postcss.config.mjs

Lines changed: 0 additions & 8 deletions
This file was deleted.

postcss.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import type { Config } from 'postcss-load-config'
2+
3+
const config: Config = {
4+
plugins: {
5+
'@tailwindcss/postcss': {},
6+
},
7+
}
8+
9+
export default config

0 commit comments

Comments
 (0)