From 8ed6c43f8195bc2a1d0dc016fe7554e8415472d3 Mon Sep 17 00:00:00 2001 From: Tiago Rodrigues Date: Thu, 26 May 2016 11:44:33 +0200 Subject: [PATCH] fix: Fix webpack config path usage --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 515babe33..5952e7b8c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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' },