2026-07-25 17:42:04 +00:00
|
|
|
const rawAppName = "verse-quote-app";
|
|
|
|
|
const rawAppTitle = "Verse";
|
2026-07-25 17:10:38 +00:00
|
|
|
|
|
|
|
|
const APP_NAME_PLACEHOLDER = "{" + "{APP_NAME}}";
|
|
|
|
|
const APP_TITLE_PLACEHOLDER = "{" + "{APP_TITLE}}";
|
|
|
|
|
|
|
|
|
|
export const APP_NAME =
|
|
|
|
|
rawAppName === APP_NAME_PLACEHOLDER ? "chat" : rawAppName;
|
|
|
|
|
|
|
|
|
|
export const APP_TITLE =
|
|
|
|
|
rawAppTitle === APP_TITLE_PLACEHOLDER ? "Chat" : rawAppTitle;
|