feat: 添加左上角应用名称自定义功能

This commit is contained in:
siujamo
2025-12-29 14:33:08 +08:00
parent 944d176240
commit d3723ba485
5 changed files with 25 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
/**
* Get application title.
*/
export function getAppTitle(): string {
return import.meta.env.VITE_APP_TITLE ?? "Helix"
}
+1
View File
@@ -1,3 +1,4 @@
export * as PhoneNumberUtils from "./phone-number-utils"
export * as DepartmentUtils from "./department-utils"
export * as AntUtils from "./ant-utils"
export * as AppUtils from "./app-utils"