在我的webpack配置规则中,我排除了/ node_modules /
test : /\.css$/,
exclude : /node_modules/,
在我的css文件中,我尝试在node_modules中导入第3方库,但出现错误
Module parse failed: Unexpected character '@' (2:0)
You may need an appropriate loader to handle this file type.
> @font-face {
| font-family: 'KaTeX_AMS';
| src: url(fonts/KaTeX_AMS-Regular.woff2) format('woff2'), url(fonts/KaTeX_AMS-Regular.woff) format('woff'), url(fonts/KaTeX_AMS-Regular.ttf) format('truetype');
我的整个配置 https://github.com/defuyun/issue-sample/blob/master/webpack.config.js
我的css文件
import Katex from 'katex';
import 'katex/dist/katex.css'
这是一个复制了该问题的仓库 https://github.com/defuyun/issue-sample