Skip to content

Commit

Permalink
fix #51, use path.join
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Oct 12, 2015
1 parent 21ea1cd commit 76546b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webpack.config.base.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
var path = require('path');

module.exports = {
module: {
loaders: []
},
output: {
path: './dist/',
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
libraryTarget: 'commonjs2'
},
Expand Down

0 comments on commit 76546b5

Please sign in to comment.