Skip to content

Commit

Permalink
[fix] fix examples - proper publicPath to include bundle chunks (#2795)
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
  • Loading branch information
igorDykhta authored Nov 28, 2024
1 parent 7ca7f91 commit f4f7fd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ const addProdConfig = config => {
return Object.assign(config, {
output: {
path: resolve(__dirname, './dist'),
filename: 'bundle.js'
filename: 'bundle.js',
publicPath: "/"
}
});
};
Expand Down

0 comments on commit f4f7fd2

Please sign in to comment.