chore: update test webServer to use preview mode
CI / Generate Certificates (pull_request) Successful in 30s
CI / Frontend CI (pull_request) Successful in 1m9s
CI / Backend CI (pull_request) Successful in 1m8s
CI / E2E Tests (pull_request) Successful in 6m26s

This commit is contained in:
me
2026-05-06 22:48:31 +05:30
parent 548b34fb51
commit e8d589d06d
3 changed files with 75 additions and 69 deletions
+5
View File
@@ -46,5 +46,10 @@ export default defineConfig(({ mode }) => {
host: env.FRONTEND_DOMAIN,
https: isSslEnabled ? sslCerts : undefined,
},
preview: {
port: Number(env.FRONTEND_PORT),
host: env.FRONTEND_DOMAIN,
https: isSslEnabled ? sslCerts : undefined,
},
};
});