From 22ddd942a884043bb837e73a2857cfbb92a551fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Wed, 19 Oct 2022 12:56:34 -0400 Subject: [PATCH] use sha256 for webpack 3/4 config --- test/runtime-integration/webpack-3/webpack.config.js | 1 + test/runtime-integration/webpack-4/webpack.config.js | 1 + 2 files changed, 2 insertions(+) diff --git a/test/runtime-integration/webpack-3/webpack.config.js b/test/runtime-integration/webpack-3/webpack.config.js index 02973e287b29..778c5d6905e2 100644 --- a/test/runtime-integration/webpack-3/webpack.config.js +++ b/test/runtime-integration/webpack-3/webpack.config.js @@ -5,6 +5,7 @@ module.exports = { output: { path: __dirname, filename: "output.js", + hashFunction: "sha256", }, devtool: false, diff --git a/test/runtime-integration/webpack-4/webpack.config.js b/test/runtime-integration/webpack-4/webpack.config.js index 07376c8c6804..e0139d38b01e 100644 --- a/test/runtime-integration/webpack-4/webpack.config.js +++ b/test/runtime-integration/webpack-4/webpack.config.js @@ -7,6 +7,7 @@ module.exports = { output: { path: __dirname, filename: "output.js", + hashFunction: "sha256", }, devtool: false,