使用Webpack将SASS文件编译为哈希的CSS

时间:2019-09-17 13:18:45

标签: css webpack sass

使用Webpack编译.scss文件。

我想要实现的就是举例

var callback = function (data, otherVar1, otherVar2) {
    console.log(data);
    console.log(otherVar1);
    console.log(otherVar2);
};

代替

styles.b0eda78ad870282c8cb9fd58884415d7.css 

当我添加到webpack选项[hash](现在在源代码中注释)时,.scss文件中的每个更改都会生成新的.css文件。例如,.scss中的3个更改将生成3个具有不同哈希值的新文件:

styles.css

我只想用新的哈希值更新一个CSS文件,而不要创建新文件。

我的webpack配置

themeA.b0eda78ad870282c8cb9fd58884415d7.css
themeA.2c0521243fe51696a6d08ae5443a6721.css
themeA.6ebd2d65f4d311fbac8441141826a9a8.css

0 个答案:

没有答案