1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-20 23:22:00 +03:00
elk/constants/index.ts

16 lines
476 B
TypeScript
Raw Normal View History

2022-11-23 21:06:27 +08:00
export const APP_NAME = 'Elk'
2022-11-15 19:54:07 +08:00
export const HOST_DOMAIN = process.dev
? 'http://localhost:3000'
2022-11-23 21:06:27 +08:00
: 'https://elk.zone'
2022-11-15 19:54:07 +08:00
2022-11-15 23:48:23 +08:00
export const DEFAULT_SERVER = 'mas.to'
2022-11-23 21:06:27 +08:00
export const STORAGE_KEY_DRAFTS = 'elk-drafts'
export const STORAGE_KEY_USERS = 'elk-users'
export const STORAGE_KEY_CURRENT_USER = 'elk-current-user'
export const STORAGE_KEY_NOTIFY_TAB = 'elk-notify-tab'
2022-11-24 10:38:14 +08:00
export const STORAGE_KEY_FIRST_VISIT = 'elk-first-visit'
2022-11-24 12:21:30 +08:00
export const STORAGE_KEY_ZEN_MODE = 'elk-zenmode'
2022-11-23 21:06:27 +08:00