Skip to content

Commit

Permalink
Fix for publicPath
Browse files Browse the repository at this point in the history
  • Loading branch information
retlehs committed Jan 11, 2017
1 parent 6240a83 commit 417ce46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/build/webpack.config.watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
new webpack.NoErrorsPlugin(),
new BrowserSyncPlugin({
target: config.devUrl,
publicPath: '../',
publicPath: config.publicPath,
proxyUrl: config.proxyUrl,
watch: config.watch,
}),
Expand Down

1 comment on commit 417ce46

@eshimischi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new webpack.NoErrorsPlugin is deprecated now in webpack-2.2.0.rc3, we should use new webpack.NoEmitOnErrorsPlugin() instead

Please sign in to comment.