From 85ab781bdfd7cf7487af839db0d58458ddbf919e Mon Sep 17 00:00:00 2001 From: Suguru Inatomi Date: Sat, 27 Sep 2025 12:53:53 +0900 Subject: [PATCH] fix: add release config to bazel build command in buildAdev function --- tools/lib/adev.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lib/adev.ts b/tools/lib/adev.ts index 831e4624a..78357c8fb 100644 --- a/tools/lib/adev.ts +++ b/tools/lib/adev.ts @@ -12,7 +12,7 @@ const $$ = $({ export async function buildAdev() { const sh = $$({ cwd: buildDir }); await sh`pnpm install --frozen-lockfile`; - await sh`pnpm bazel build //adev:build.production`; + await sh`pnpm bazel build //adev:build.production --config=release`; } export function serveAdev() {