csso
object
配置 csso 工具以压缩 CSS 代码。
csso.enable
boolean
默认值 true
是否开启 CSS 代码压缩。
csso.config
object
csso 的具体配置。
module.exports = {
// ...
csso: {
enable: true,
config: {
// 配置项同 https://github.com/css/csso#minifysource-options
}
}
}
csso 配置只在生产模式下生效。如果你正在使用 watch 模式,又希望启用 csso,那么则需要设置
process.env.NODE_ENV
为'production'
。