Spaces:
Running
Running
File size: 321 Bytes
877add7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | export const API_BASE = (import.meta.env.VITE_API_BASE as string | undefined) ?? "/api";
export const PAGES = [
"Home",
"Dashboard",
"PatientWorkbench",
"EpisodeReplay",
"PolicyCompare",
"PrecisionDosing",
"TrainingMonitor",
"SafetyInspector",
] as const;
export type PageName = (typeof PAGES)[number];
|