From 8147669173d0e93e5ecd154f643f2be570971945 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Mon, 5 Dec 2022 18:21:22 +0100 Subject: [PATCH] Actually enable SRI for all websocket assets Without this setting, no SRI hashes are added to the assets. --- config/webpack/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/webpack/webpack.config.js b/config/webpack/webpack.config.js index 953907e6..19c99518 100644 --- a/config/webpack/webpack.config.js +++ b/config/webpack/webpack.config.js @@ -49,7 +49,7 @@ const envConfig = module.exports = { new SubresourceIntegrityPlugin(), new WebpackAssetsManifest({ entrypoints: true, - integrity: false, + integrity: true, writeToDisk: true, entrypointsUseAssets: true, publicPath: true,