Rename some files to .cjs, make the codebase aware of .cjs and .mjs extensions

This commit is contained in:
Alex Gleason
2023-01-17 18:34:11 -06:00
parent 988d466fcd
commit 54eae01255
14 changed files with 17 additions and 10 deletions

7
postcss.config.cjs Normal file
View File

@ -0,0 +1,7 @@
module.exports = ({ env }) => ({
plugins: {
tailwindcss: {},
autoprefixer: {},
cssnano: env === 'production' ? {} : false,
},
});