使用webpack时的一些注意点

时间:2022-12-19 14:58:40

1. 配置config.module.loaders属性时:

config.module = {
  loader: [{
    test: /\.css$/,
    loader: 'style!css'
  }]
}

或者

config.module = {
  loader: [{
    test: /\.css$/,
    loaders: ['style', 'css']
  }]
}

注意:
test后面接的是一个正则表达式,不要习惯性的加上了引号!!

如果使用字符串的形式是loader: 'style!css',如果使用数组的形式就是loaders: ['style', 'css'],key值变为了复数形式!