From 2c10dbce20246fb6aec587d9a31f6e227b98dae2 Mon Sep 17 00:00:00 2001 From: Tim <50115603+bossenti@users.noreply.github.com> Date: Mon, 20 Nov 2023 13:01:51 +0100 Subject: [PATCH] build: change `outputHashing` in Angular to avoid caching issue after new release (#2209) --- ui/angular.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/angular.json b/ui/angular.json index 67a727a016..e9ef1b77d8 100644 --- a/ui/angular.json +++ b/ui/angular.json @@ -34,7 +34,8 @@ "node_modules/datatables.net/js/jquery.dataTables.js", "node_modules/jquery-ui-dist/jquery-ui.js", "node_modules/quill/dist/quill.js" - ] + ], + "outputHashing": "bundles" }, "configurations": { "production": { @@ -51,7 +52,7 @@ } ], "optimization": true, - "outputHashing": "all", + "outputHashing": "bundles", "sourceMap": false, "namedChunks": false, "aot": true,