1
0
Fork 0
websitedesign2025/postcss.config.js

10 lines
245 B
JavaScript
Raw Permalink Normal View History

2024-10-16 16:05:06 -05:00
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer'),
require('postcss-google-font'),
2024-10-16 16:05:06 -05:00
...(process.env.JEKYLL_ENV == 'production'
? [require('cssnano')({ preset: 'default' })]
: [])
]
}