Files
website-v2/postcss.config.js
Greg Newman 223c69a897 🔨 refactor builds
* Removed postcss and postcss-cli because it’s not needed in latest versions of Tailwind cli.
* Now using tailwind cli for dev and build
* Added cssnano.  For now I’m not seeing much if any reduction in size but as it grows we might.
2022-11-17 08:51:57 -05:00

8 lines
99 B
JavaScript

module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
cssnano: {},
},
}