fix: 将 admin 改为普通目录

This commit is contained in:
hajimi
2026-07-31 16:39:16 +08:00
parent e7f9328611
commit fdf8022662
592 changed files with 41318 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* @description: 开发模式
*/
export function isDevMode(): boolean {
return import.meta.env.DEV
}
/**
* @description: 生成模式
*/
export function isProdMode(): boolean {
return import.meta.env.PROD
}