Skip to content

Commit

Permalink
Merge pull request #124 from pascalw/bugfix/119-webpack-public-path-p…
Browse files Browse the repository at this point in the history
…roduction

Close #119, Fix Webpack publicPath for production builds
  • Loading branch information
chentsulin committed Jan 15, 2016
2 parents 2989a02 + 623f4fd commit 062260b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ config.devtool = 'source-map';

config.entry = './app/index';

config.output.publicPath = '/dist/';
config.output.publicPath = '../dist/';

config.module.loaders.push({
test: /^((?!\.module).)*\.css$/,
Expand Down

0 comments on commit 062260b

Please sign in to comment.