gpt4 book ai didi

javascript - webpack 4 scss loader 不工作 - 为什么?

转载 作者:行者123 更新时间:2023-11-29 10:56:24 26 4
gpt4 key购买 nike

我的配置是:

{
test: '/\.(css|scss)$/',
exclude: /node_modules/,
use: [
'style-loader', 'css-loader', 'sass-loader'
]
}

但我收到以下错误:

ERROR in ./src/components/button/button.scss 1:10
Module parse failed: Unexpected token (1:10)
You may need an appropriate loader to handle this file type.
> $font-size: 20px;

我做错了什么?

最佳答案

看起来您正在尝试使用正则表达式进行测试,但实际上您使用的是字符串。删除正则表达式模式周围的 ,它应该可以工作:

{
test: /\.(css|scss)$/,
...
}

关于javascript - webpack 4 scss loader 不工作 - 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56507972/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com