Skip to content

Commit

Permalink
try: remove the webpack comment
Browse files Browse the repository at this point in the history
  • Loading branch information
michalczaplinski committed Sep 12, 2024
1 parent 03f4ee7 commit 62e527e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/interactivity-router/src/head.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const updateHead = async ( newHead: HTMLHeadElement[] ) => {
[ ...headElements.entries() ]
.filter( ( [ , { tag } ] ) => tag.nodeName === 'SCRIPT' )
.map( async ( [ url ] ) => {
await import( /* webpackIgnore: true */ url );
await import( url );
} )
);

Expand Down

0 comments on commit 62e527e

Please sign in to comment.