1

我遇到了 sass 文件的问题(当我删除 sass 文件时,所有构建过程都成功通过),错误是:

Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js):
ModuleParseError: Module parse failed: Unexpected character '�' (1:0)
You may need an appropriate loader to handle this file type, currently, no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders

据我了解,我需要添加一些加载器到我的vue.config.js,但我不明白我需要添加什么加载器?从错误中,不清楚是哪个文件/行确切导致了问题(我有几个scss 文件)

4

1 回答 1

1

安装 sass 加载器和 node-sass

运行npm install -D sass-loader node-sass你可以在这里看到更多

于 2020-07-29T08:43:46.360 回答