From 8a3f472c7d9015207979fb51a665b36565345169 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Mon, 1 Mar 2021 13:58:24 -0500 Subject: [PATCH] Add hash to bundle urls for cache busting --- webpack.common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.common.js b/webpack.common.js index 2562cc9f1..8d2c5d27a 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -77,7 +77,7 @@ module.exports = { }) ], output: { - filename: '[name].bundle.js', + filename: '[name].[contenthash].bundle.js', path: path.resolve(__dirname, 'dist'), publicPath: '' },