diff options
Diffstat (limited to 'src/webpack.config.js')
-rw-r--r-- | src/webpack.config.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webpack.config.js b/src/webpack.config.js index 01c91e6..f2218be 100644 --- a/src/webpack.config.js +++ b/src/webpack.config.js @@ -1,5 +1,5 @@ const path = require('path') -const ExtractTextPlugin = require("extract-text-webpack-plugin") +const ExtractTextPlugin = require('extract-text-webpack-plugin') const UglifyJSPlugin = require('uglifyjs-webpack-plugin') const extractSass = new ExtractTextPlugin({ @@ -18,7 +18,7 @@ module.exports = { module: { rules: [ { - test: /\.js$/, + test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' }, |