我是否可以使全局异常不应用CSS(或其他文件类型)的加载器。
现在我刚收到一个错误:
...
ERROR in ./css/vendor/index.css
You may need an appropriate loader to handle this file type.
...
答案 0 :(得分:0)
您可以将其排除,将exclude
选项添加到css loader
loaders: [
//
{
test: /\.css$/,
loader: 'css-loader?minimize',
exclude: /index\.css/
}
]