PostCss-用于关闭阻止代码的自动前缀在Webpack 4中不起作用。
/* autoprefixer: (on|off) */
Autoprefixer文档:https://github.com/postcss/autoprefixer
这是行不通的:
/* autoprefixer: off */
::placeholder {
color: gray;
}
.test1 {
user-select: none;
}
/* autoprefixer: on */
.test2 {
display: grid;
user-select: none;
}
此作品有效:
/* autoprefixer: ignore next */
::placeholder {
color: gray;
}
.test1 {
user-select: none;
}
.test2 {
display: grid;
user-select: none;
}
因此,/* autoprefixer: off */
关闭文件中的所有CSS,不仅关闭代码块。
有什么建议吗?