refactor(env): 统一环境变量命名规范
All checks were successful
CI/CD Pipeline / playwright (push) Successful in 3m46s
CI/CD Pipeline / build-and-deploy (push) Successful in 4m5s

This commit is contained in:
严浩
2025-10-28 19:18:00 +08:00
parent 35640a2ade
commit 33e8a4a5d6
6 changed files with 22 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
/* eslint-disable */
// Generated by Wrangler by running `wrangler types` (hash: 84692d03acd392dfe81b48b26e3d156f)
// Generated by Wrangler by running `wrangler types` (hash: 038b66b18c316cb50fca417e244a37c5)
// Runtime types generated with workerd@1.20251008.0 2025-09-09
declare namespace Cloudflare {
interface GlobalProps {
@@ -7,16 +7,17 @@ declare namespace Cloudflare {
}
interface Env {
KV: KVNamespace;
VITE_BUILD_SOURCE_MAP: string;
VITE_BUILD_MINIFY: string;
VITE_CLOUDFLARE_SERVER_ENABLED: string;
VITE_APP_TITLE: string;
VITE_APP_BASE: string;
VITE_APP_BUILD_SOURCE_MAP: string;
VITE_APP_BUILD_MINIFY: string;
VITE_APP_BUILD_COMMIT: string;
VITE_APP_BUILD_TIME: string;
VITE_ENABLE_VUE_DEVTOOLS: string;
VITE_MENU_SHOW_DEMOS: string;
VITE_MENU_SHOW_ORDER: string;
VITE_CLOUDFLARE_SERVER_ENABLED: string;
VITE_APP_ENABLE_VUE_DEVTOOLS: string;
VITE_APP_MENU_SHOW_DEMOS: string;
VITE_APP_MENU_SHOW_ORDER: string;
VITE_APP_ENABLE_ROUTER_LOG_GUARD: string;
}
}
interface Env extends Cloudflare.Env {}