0

忽略选项似乎对我不起作用。

我正在执行以下操作:

    .pipe(plugins.uncss({
        html: glob.sync('./**/*.{csh,h}tml'),
        ignore: ['.active']
    })

任何人都可以帮忙吗?

4

1 回答 1

4

尝试使用正则表达式作为您的ignore选项:

.pipe(plugins.uncss({
  html: glob.sync('./**/*.{csh,h}tml'),
  ignore: ['/active/']
})
于 2015-01-15T10:02:17.220 回答