阻止代码的自动前缀修复程序在Webpack 4中不起作用

时间:2019-03-19 10:20:37

标签: webpack webpack-4 postcss autoprefixer

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,不仅关闭代码块。

有什么建议吗?

0 个答案:

没有答案