Spaces:
Runtime error
Runtime error
| import { z } from "zod"; | |
| const envSchema = z.object({ | |
| // Default to paths that Nginx will proxy to API_URL in all modes | |
| VITE_API_URL: z.string().default("/api"), | |
| VITE_WS_URL: z.string().default("/ws"), | |
| }); | |
| export const env = envSchema.parse(import.meta.env); | |