Skip to content

Commit

Permalink
fix: Fix webpack config path usage
Browse files Browse the repository at this point in the history
  • Loading branch information
trodrigues committed May 26, 2016
1 parent 7c3ea08 commit 8ed6c43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
var webpack = require('webpack')
var path = require('path')
module.exports = {
context: __dirname,
entry: './browser',
output: {
path: __dirname + '/browser-dist',
path: path.join(__dirname, '/browser-dist'),
filename: 'contentful.js',
library: 'contentful'
},
Expand Down

0 comments on commit 8ed6c43

Please sign in to comment.