Skip to content

Commit

Permalink
fix(#772) - Added public path to webpack (#773)
Browse files Browse the repository at this point in the history
  • Loading branch information
hybridx committed Oct 30, 2020
1 parent bbf53a8 commit 17d1bf3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/home-spa/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ module.exports = {
devtool: 'inline-source-map',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
path: path.resolve( __dirname, 'dist' ),
publicPath: '/',
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
Expand Down

0 comments on commit 17d1bf3

Please sign in to comment.