如何告诉webpack不要编译CSS?

时间:2016-02-08 09:34:45

标签: webpack

我是否可以使全局异常不应用CSS(或其他文件类型)的加载器。

现在我刚收到一个错误:

...
ERROR in ./css/vendor/index.css
You may need an appropriate loader to handle this file type.
...

1 个答案:

答案 0 :(得分:0)

您可以将其排除,将exclude选项添加到css loader

loaders: [
  //
  {
    test: /\.css$/,
    loader: 'css-loader?minimize',
    exclude: /index\.css/
  }
]