Skip to content

Commit

Permalink
changes for production matchEntry (#1855)
Browse files Browse the repository at this point in the history
Co-authored-by: Durrab Khan <[email protected]>
  • Loading branch information
durrab and durrabkhan authored Jul 12, 2021
1 parent ae907d5 commit 5a72467
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/subapp-web/lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ const utils = {
(x.startsWith(`${entryName}.bundle`) ||
// if a subapp comes from a package in node_modules, webpack5 names entry like this
x.startsWith(`${entryName}~_.bundle`) ||
x.startsWith(`${entryName}.~`));
x.startsWith(`${entryName}.~`) ||
x.startsWith(`${entryName}~`));
// map all IDs to actual assets
const bundleAssets = entryPoints
.map(id => {
Expand Down

0 comments on commit 5a72467

Please sign in to comment.