From f3d80026067a0406bdd635bed069a9f7bac838f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Kalij=C3=A4rvi?= Date: Thu, 23 Nov 2023 13:06:56 +0200 Subject: [PATCH] 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; };