Skip to content

Commit

Permalink
Fixed bundle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Jul 14, 2022
1 parent a802e73 commit cb04bda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const config = {
test: /\.jpe?g$|\.gif$|\.ico$|\.png$|\.svg$/,
loader: 'file-loader',
options: {
name: 'assets/fonts/[name].[hash:8].[ext]',
name: 'assets/images/[name].[hash:8].[ext]',
},
},

Expand Down
2 changes: 1 addition & 1 deletion config/webpack.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const config = {
filename: 'assets/js/[name].[chunkhash:8].bundle.js',
chunkFilename: 'assets/js/[name].[chunkhash:8].js',
path: commonPaths.outputServerPath,
publicPath: `${PUBLIC_URL}`
publicPath: `${PUBLIC_URL}/`
},
mode: 'production',
optimization: {
Expand Down

0 comments on commit cb04bda

Please sign in to comment.