Skip to content

Commit

Permalink
fix: don't try to inject dynamic import polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Mar 5, 2021
1 parent d492b9c commit fdffd37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugin.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ function plugin(): Plugin[] {
build: {
outDir: getOutDir(config),
manifest: !isSSR(config),
rollupOptions: { input: entryPoints(config) }
rollupOptions: { input: entryPoints(config) },
polyfillDynamicImport: false
},
ssr
})
Expand Down

0 comments on commit fdffd37

Please sign in to comment.