From a7d5461164a4f9fb4c0fc31736a394d95bc7277d Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 23 Oct 2023 21:41:18 +0900 Subject: [PATCH] fix(analyze): don't override analyze options (#259) --- src/commands/analyze.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/analyze.ts b/src/commands/analyze.ts index e7ca158e..3bc16f4f 100644 --- a/src/commands/analyze.ts +++ b/src/commands/analyze.ts @@ -48,7 +48,7 @@ export default defineCommand({ rootDir: cwd, overrides: defu(ctx.data?.overrides, { build: { - analyze: true, + analyze: { enabled: true }, }, analyzeDir, buildDir,