Skip to content

Commit 2d975b7

Browse files
committed
Add types to postcss.config.cjs
1 parent 6fd6758 commit 2d975b7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

postcss.config.cjs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
module.exports = ({ env }) => ({
1+
/** @type {import('postcss-load-config').ConfigFn} */
2+
const config = ({ env }) => ({
23
plugins: {
34
tailwindcss: {},
45
autoprefixer: {},
56
cssnano: env === 'production' ? {} : false,
67
},
78
});
9+
10+
module.exports = config;

0 commit comments

Comments
 (0)