We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47effac commit 1b8ff34Copy full SHA for 1b8ff34
examples/webpack.config.js
@@ -1,3 +1,4 @@
1
+var path = require('path')
2
var HtmlWebpackPlugin = require('html-webpack-plugin')
3
4
module.exports = {
@@ -8,6 +9,7 @@ module.exports = {
8
9
path: __dirname + '/dist',
10
filename: 'main.js'
11
},
12
+ resolveLoader: { root: path.join(__dirname, 'node_modules') },
13
module: {
14
loaders: [
15
{ test: /\.js$/, loader: 'babel-loader' }
0 commit comments