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

@@ -32,7 +32,7 @@ export function install({ app }: { app: import('vue').App<Element> }) {
{
// 警告:路由守卫的创建顺序会影响执行流程,请勿调整
createNProgressGuard(router);
createLogGuard(router);
if (import.meta.env.VITE_APP_ENABLE_ROUTER_LOG_GUARD === 'true') createLogGuard(router);
Object.assign(globalThis, { stack: createStackGuard(router) });
}