Skip to content

Commit

Permalink
change output path of Webpack to default / (#578)
Browse files Browse the repository at this point in the history
* change output path of Webpack to default /
  • Loading branch information
molotgor authored Oct 28, 2024
1 parent 6aa5ff7 commit 2c810c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack/webpack.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const { appBuild, appPath, appSrc } = require('./paths');
module.exports = merge(commonConfig, {
output: {
path: path.resolve(appBuild, 'out'),
publicPath: '',
publicPath: '/',
filename: '[name].[contenthash].js',
chunkFilename: '[name].[contenthash].js',
},
Expand Down

0 comments on commit 2c810c7

Please sign in to comment.