10 lines
381 B
TypeScript
10 lines
381 B
TypeScript
export const fallbackLng = "en-US";
|
|
export const supportedLngs = ["en-US", "zh-CN"];
|
|
|
|
export const CDN_URL =
|
|
import.meta.env.VITE_CDN_URL || "https://cdn.jsdmirror.com";
|
|
export const TUTORIAL_DOCUMENT =
|
|
import.meta.env.VITE_TUTORIAL_DOCUMENT || "true";
|
|
export const USER_EMAIL = import.meta.env.VITE_USER_EMAIL;
|
|
export const USER_PASSWORD = import.meta.env.VITE_USER_PASSWORD;
|