From 1b09c2b8e3a377116bcb1ca402d0f7d6c8cffd9b Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Mon, 29 Dec 2025 10:40:32 +0100 Subject: [PATCH] Frontend: Update webpack.config.js Signed-off-by: Michael Mayer --- frontend/webpack.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index 57bd16b6c..1361ed412 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -78,7 +78,9 @@ const config = { clean: true, }, resolve: { - modules: isCustom ? [PATHS.custom, PATHS.src, PATHS.modules] : [PATHS.src, PATHS.modules], + modules: isCustom + ? [PATHS.custom, PATHS.src, "node_modules", PATHS.modules] + : [PATHS.src, "node_modules", PATHS.modules], preferRelative: true, alias: { "vue$": "vue/dist/vue.runtime.esm-bundler.js",