Skip to content

Commit

Permalink
chore: silence import warning
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Aug 18, 2023
1 parent 1590456 commit 27f2ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
const code = await specToModule(spec, { ...options, imports });
const blob = new Blob([code], { type: 'text/javascript' });
const url = URL.createObjectURL(blob);
return (await import(url)).default;
return (await import(url /* @vite-ignore */)).default;
}
</script>
</body>
Expand Down

0 comments on commit 27f2ec2

Please sign in to comment.