1
0
forked from baron/baron-sso

fix(ci): simplify webServer preview command to avoid host/port override

This commit is contained in:
2026-05-27 17:47:20 +09:00
parent 62d3923dee
commit d88524b0f7

View File

@@ -85,7 +85,7 @@ export default defineConfig({
? undefined ? undefined
: { : {
command: process.env.CI 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}`, : `pnpm run dev -- --host localhost --port ${port}`,
url: `http://localhost:${port}`, url: `http://localhost:${port}`,
reuseExistingServer, reuseExistingServer,