diff options
Diffstat (limited to 'juick-www/webpack.config.js')
-rw-r--r-- | juick-www/webpack.config.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/juick-www/webpack.config.js b/juick-www/webpack.config.js index 86cc3bf0..27e4a28a 100644 --- a/juick-www/webpack.config.js +++ b/juick-www/webpack.config.js @@ -16,12 +16,13 @@ module.exports = { }, module: { preLoaders: [ - { test: /\.jsx?$/, loader: 'eslint', exclude: /node_modules/ } + { test: /\.jsx?$/, loader: 'eslint', exclude: /node_modules/ }, + { test: /\.css$/, loader: 'csslint?failOnWarning=false', exclude: /node_modules/ } ], loaders: [ { test: /\.css$/, loader: ExtractTextPlugin.extract("style-loader", "css-loader") }, { test: /\.png$/, loader: "url-loader?limit=10000000000" }, - { test: /\.svg$/, loader: "url-loader?limit=10000000000" }, + { test: /\.svg$/, loader: "url-loader?limit=10000000000" } ] }, plugins: [ |