We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed10673 + 3d024ab commit ad22986Copy full SHA for ad22986
.gitignore
@@ -30,5 +30,6 @@ node_modules
30
.DS_Store
31
32
# Generated files
33
-bundle.js
34
-dist/
+/bundle.js
+/bundle.js.map
35
+/dist/
webpack.config.js
@@ -2,9 +2,12 @@
2
3
var path = require('path');
4
5
+var webpack = require('webpack');
6
+
7
var shouldWatch = (process.argv.indexOf('--watch') !== -1);
8
9
module.exports = {
10
+ devtool: 'source-map',
11
entry: './client.js',
12
output: {
13
path: __dirname,
@@ -39,6 +42,9 @@ module.exports = {
39
42
}
40
43
]
41
44
},
45
+ plugins: [
46
+ new webpack.optimize.DedupePlugin()
47
+ ],
48
resolveLoader: {
49
// this is a workaround for loaders being applied
50
// to linked modules
0 commit comments