mirror of
https://github.com/dessant/buster.git
synced 2024-11-18 03:25:42 +00:00
c921f6509e
BREAKING CHANGE: browser versions older than Chrome 92, Edge 92, Firefox 91, and Opera 78 are no longer supported
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
const postcssPresetEnv = require('postcss-preset-env');
|
|
const cssnano = require('cssnano');
|
|
|
|
module.exports = function (api) {
|
|
const plugins = [postcssPresetEnv()];
|
|
|
|
if (api.env === 'production') {
|
|
plugins.push(cssnano({zindex: false, discardUnused: false}));
|
|
}
|
|
|
|
return {plugins};
|
|
};
|