Skip to content

Commit

Permalink
Fixed the paths to follow glob 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
khalima committed Oct 24, 2023
1 parent a956456 commit 2264c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Entries = () => {
const ignore = [];

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 2264c0f

Please sign in to comment.