feat: support probe shell generation

This commit is contained in:
ReaJason
2025-08-13 23:53:40 +08:00
parent 3102f10d7b
commit 4a3bc0c40a
304 changed files with 59084 additions and 1454 deletions
+3 -2
View File
@@ -1,9 +1,10 @@
import * as yup from "yup";
const EnvSchema = yup.object({
API_URL: yup.string().optional(),
BASE_PATH: yup.string().optional(),
API_URL: yup.string().required(),
BASE_PATH: yup.string().required(),
MODE: yup.string().required(),
LANDING: yup.boolean().required(),
});
type EnvSchema = yup.InferType<typeof EnvSchema>;