From d88524b0f75a5d20c946c06674cf62400e208a2a Mon Sep 17 00:00:00 2001 From: chan Date: Wed, 27 May 2026 17:47:20 +0900 Subject: [PATCH] fix(ci): simplify webServer preview command to avoid host/port override --- adminfront/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminfront/playwright.config.ts b/adminfront/playwright.config.ts index 9fd0d7fc..ad5ce1f3 100644 --- a/adminfront/playwright.config.ts +++ b/adminfront/playwright.config.ts @@ -85,7 +85,7 @@ export default defineConfig({ ? undefined : { command: process.env.CI - ? `pnpm run preview -- --host localhost --port ${port} > preview.log 2>&1` + ? `pnpm run preview -- --port ${port}` : `pnpm run dev -- --host localhost --port ${port}`, url: `http://localhost:${port}`, reuseExistingServer,