Minor: update hash to fullhash for filename and chunkFilename in webpack prod config (#14668)

This commit is contained in:
Sachin Chaurasiya 2024-01-10 16:10:54 +05:30 committed by GitHub
parent 501c22f6c1
commit f9ebdfc722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,8 +33,8 @@ module.exports = {
// Output configuration
output: {
path: outputPath,
filename: 'openmetadata.[hash].js',
chunkFilename: '[name].[hash].js',
filename: 'openmetadata.[fullhash].js',
chunkFilename: '[name].[fullhash].js',
publicPath: '/', // Ensures bundle is served from absolute path as opposed to relative
},