mirror of
https://github.com/tchartron/blow
synced 2024-11-23 12:53:20 +00:00
15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
const postcssConfig = {
|
|
plugins: [
|
|
require('autoprefixer'),
|
|
require('tailwindcss')
|
|
],
|
|
};
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
postcssConfig.plugins.push(
|
|
require('cssnano')({
|
|
preset: 'default',
|
|
})
|
|
);
|
|
}
|
|
module.exports = postcssConfig;
|