Skip to content

Commit

Permalink
UHF-9354: Fixed globbing problem in webpack config.
Browse files Browse the repository at this point in the history
  • Loading branch information
khalima committed Nov 23, 2023
1 parent 21a7604 commit af7b3d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/themes/custom/hdbt_subtheme/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit af7b3d0

Please sign in to comment.