From af7b3d044bf9746375a90794f86c72a26d9f1de6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Kalij=C3=A4rvi?= Date: Thu, 23 Nov 2023 13:07:18 +0200 Subject: [PATCH] UHF-9354: Fixed globbing problem in webpack config. --- public/themes/custom/hdbt_subtheme/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/themes/custom/hdbt_subtheme/webpack.config.js b/public/themes/custom/hdbt_subtheme/webpack.config.js index 2d294279..ab9055da 100644 --- a/public/themes/custom/hdbt_subtheme/webpack.config.js +++ b/public/themes/custom/hdbt_subtheme/webpack.config.js @@ -25,7 +25,7 @@ const Entries = () => { ]; glob.sync(pattern, {ignore: ignore}).map((item) => { - entries[path.parse(item).name] = item } + entries[path.parse(item).name] = `./${item}` } ); return entries; };