Skip to content

Commit ccee1d3

Browse files
committed
wip: update
1 parent b7efbbf commit ccee1d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/vite/src/node/server/environments/fullBundleEnvironment.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,14 @@ export class FullBundleDevEnvironment extends DevEnvironment {
311311
output.entryFileNames = 'assets/[name].js'
312312
output.chunkFileNames = 'assets/[name]-[hash].js'
313313
output.assetFileNames = 'assets/[name]-[hash][extname]'
314+
output.minify = false
314315
}
315316
} else {
316317
rolldownOptions.output ??= {}
317318
rolldownOptions.output.entryFileNames = 'assets/[name].js'
318319
rolldownOptions.output.chunkFileNames = 'assets/[name]-[hash].js'
319320
rolldownOptions.output.assetFileNames = 'assets/[name]-[hash][extname]'
321+
rolldownOptions.output.minify = false
320322
}
321323

322324
return rolldownOptions

0 commit comments

Comments
 (0)