feat: 本地开发默认 website

This commit is contained in:
puhui999
2025-04-03 12:52:30 +08:00
parent 14f06c98ef
commit 198cd6912c
5 changed files with 51 additions and 22 deletions

View File

@@ -11,12 +11,14 @@ export interface VbenAdminProAppConfigRaw {
VITE_GLOB_API_URL: string;
VITE_APP_TENANT_ENABLE: boolean;
VITE_APP_CAPTCHA_ENABLE: boolean;
VITE_APP_WEBSITE: string;
}
export interface ApplicationConfig {
apiURL: string;
captchaEnable: boolean;
tenantEnable: boolean;
website: string;
}
declare global {