Copied CSSnano options.

This commit is contained in:
flash 2024-01-19 15:33:41 +00:00
parent 418efb24c1
commit 433b00e93b

View file

@ -37,11 +37,18 @@ const buildTasks = {
// PREP
const config = JSON.parse(fs.readFileSync(configFile));
const postcssPlugins = [];
if(!isDebugBuild) postcssPlugins.push(require('cssnano'));
postcssPlugins.push(require('autoprefixer')({
remove: false,
}));
const postcssPlugins = [ require('autoprefixer')({ remove: false }) ];
if(!isDebugBuild)
postcssPlugins.push(require('cssnano')({
preset: [
'cssnano-preset-default',
{
minifyGradients: false,
reduceIdents: false,
zindex: true,
}
],
}));
const swcJscOptions = {
target: 'es2021',