csso

object

配置 csso 工具以压缩 CSS 代码。

csso.enable

boolean

默认值 true

是否开启 CSS 代码压缩。

csso.config

object

csso 的具体配置。

  1. module.exports = {
  2. // ...
  3. csso: {
  4. enable: true,
  5. config: {
  6. // 配置项同 https://github.com/css/csso#minifysource-options
  7. }
  8. }
  9. }

csso 配置只在生产模式下生效。如果你正在使用 watch 模式,又希望启用 csso,那么则需要设置 process.env.NODE_ENV'production'