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 88b001b commit 7b72069Copy full SHA for 7b72069
packages/vite/src/node/build.ts
@@ -415,7 +415,7 @@ export async function resolveBuildPlugins(config: ResolvedConfig): Promise<{
415
...(options.minify ? [terserPlugin(config)] : []),
416
...(options.manifest ? [manifestPlugin(config)] : []),
417
...(options.ssrManifest ? [ssrManifestPlugin(config)] : []),
418
- buildReporterPlugin(config),
+ ...(!config.isWorker ? [buildReporterPlugin(config)] : []),
419
loadFallbackPlugin()
420
]
421
}
0 commit comments