diff --git a/webpack.config.js b/webpack.config.js index 4b115b5..fe25f85 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -17,12 +17,12 @@ module.exports = { { test: /\.js$/, loader: 'babel', - include: __dirname + '/src', + include: path.join(__dirname,'src'), }, { test: /\.css$/, loader: ExtractTextPlugin.extract('css?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]'), - include: __dirname + '/src' + include: path.join(__dirname,'src') } ], },