build(ui): support base_path

This commit is contained in:
ReaJason
2025-02-23 02:33:09 +08:00
parent ad248f0703
commit 72370a3b84
7 changed files with 15 additions and 11 deletions
+1
View File
@@ -2,6 +2,7 @@ import * as z from "zod";
const EnvSchema = z.object({
API_URL: z.optional(z.string()),
BASE_PATH: z.optional(z.string()),
MODE: z.string(),
});