We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caac675 commit a23a028Copy full SHA for a23a028
packages/repl/src/lib/workers/bundler/index.ts
@@ -521,9 +521,6 @@ async function get_bundle(
521
'process.env.NODE_ENV': JSON.stringify('production')
522
})
523
],
524
- output: {
525
- inlineDynamicImports: true
526
- },
527
onwarn(warning) {
528
all_warnings.push({
529
message: warning.message
@@ -630,7 +627,8 @@ async function bundle({
630
627
const client_result = (
631
628
await client.bundle?.generate({
632
629
format: 'iife',
633
- exports: 'named'
+ exports: 'named',
+ inlineDynamicImports: true
634
// sourcemap: 'inline'
635
636
)?.output[0];
0 commit comments