We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd6758 commit 2d975b7Copy full SHA for 2d975b7
postcss.config.cjs
@@ -1,7 +1,10 @@
1
-module.exports = ({ env }) => ({
+/** @type {import('postcss-load-config').ConfigFn} */
2
+const config = ({ env }) => ({
3
plugins: {
4
tailwindcss: {},
5
autoprefixer: {},
6
cssnano: env === 'production' ? {} : false,
7
},
8
});
9
+
10
+module.exports = config;
0 commit comments