fix: point API base at qa.getzino.in (dev environment renamed to qa)

This commit is contained in:
gitea_admin 2026-07-06 17:21:18 +05:30
parent 42c4a1e2a3
commit 16a42a8a2b
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ npm run typecheck # type-check only
Create `.env` (gitignored) pointing at the gateway:
```
VITE_ZINO_API_URL=https://dev.getzino.in
VITE_ZINO_API_URL=https://qa.getzino.in
```
Sign in with a platform user (e.g. `admin@getzino.com` / `Zino`); the JWT is

View File

@ -5,7 +5,7 @@ import { App } from './App';
import { ZinoProvider } from './api/provider';
import './styles/styles.css';
const baseUrl = import.meta.env.VITE_ZINO_API_URL || 'https://dev.getzino.in';
const baseUrl = import.meta.env.VITE_ZINO_API_URL || 'https://qa.getzino.in';
// Keep client routes under Vite's base (e.g. /lead-to-policy) so a refresh on
// an in-app route hits the preview's per-slug SPA fallback. '/' in dev.
const routerBase = import.meta.env.BASE_URL.replace(/\/$/, '');