忽略选项似乎对我没用。
我正在做以下事情:
.pipe(plugins.uncss({
html: glob.sync('./**/*.{csh,h}tml'),
ignore: ['.active']
})
有人可以帮忙吗?
答案 0 :(得分:4)
尝试为ignore
选项使用正则表达式:
.pipe(plugins.uncss({
html: glob.sync('./**/*.{csh,h}tml'),
ignore: ['/active/']
})