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 b7efbbf commit ccee1d3Copy full SHA for ccee1d3
packages/vite/src/node/server/environments/fullBundleEnvironment.ts
@@ -311,12 +311,14 @@ export class FullBundleDevEnvironment extends DevEnvironment {
311
output.entryFileNames = 'assets/[name].js'
312
output.chunkFileNames = 'assets/[name]-[hash].js'
313
output.assetFileNames = 'assets/[name]-[hash][extname]'
314
+ output.minify = false
315
}
316
} else {
317
rolldownOptions.output ??= {}
318
rolldownOptions.output.entryFileNames = 'assets/[name].js'
319
rolldownOptions.output.chunkFileNames = 'assets/[name]-[hash].js'
320
rolldownOptions.output.assetFileNames = 'assets/[name]-[hash][extname]'
321
+ rolldownOptions.output.minify = false
322
323
324
return rolldownOptions
0 commit comments