human-anatomy-3d/postcss.config.js

20 lines
407 B
JavaScript
Raw Permalink Normal View History

2020-06-20 18:16:50 +00:00
/* eslint-disable import/no-extraneous-dependencies, global-require */
const plugins = [require('tailwindcss'), require('autoprefixer')];
if (process.env.NODE_ENV === 'production') {
plugins.push(
require('cssnano')({
preset: [
'default',
{
discardComments: {
removeAll: true,
},
},
],
}),
);
}
module.exports = { plugins };