diff --git a/gcp/website/frontend3/webpack.dev.js b/gcp/website/frontend3/webpack.dev.js index 5d3c4ca110b..fb148bdf3ed 100644 --- a/gcp/website/frontend3/webpack.dev.js +++ b/gcp/website/frontend3/webpack.dev.js @@ -24,7 +24,7 @@ module.exports = { vendorsJs: { test: /node_modules/, chunks: 'initial', - filename: 'static/vendors.js', + name: 'vendors', priority: 1, maxInitialRequests: 2, minChunks: 1, diff --git a/gcp/website/frontend3/webpack.prod.js b/gcp/website/frontend3/webpack.prod.js index 16b681515d4..4cf6c4779ad 100644 --- a/gcp/website/frontend3/webpack.prod.js +++ b/gcp/website/frontend3/webpack.prod.js @@ -24,7 +24,7 @@ module.exports = { vendorsJs: { test: /node_modules/, chunks: 'initial', - filename: 'static/vendors.[contenthash].js', + name: 'vendors', priority: 1, maxInitialRequests: 2, minChunks: 1,