mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-15 02:50:10 +01:00
a84333901a
fix: PFP url check
10 lines
425 B
JavaScript
10 lines
425 B
JavaScript
export const API_BASE = import.meta.env.VITE_API_BASE || "/api";
|
|
|
|
export const AUTH_USER = "anythingllm_user";
|
|
export const AUTH_TOKEN = "anythingllm_authToken";
|
|
export const AUTH_TIMESTAMP = "anythingllm_authTimestamp";
|
|
export const COMPLETE_QUESTIONNAIRE = "anythingllm_completed_questionnaire";
|
|
|
|
export const USER_BACKGROUND_COLOR = "bg-historical-msg-user";
|
|
export const AI_BACKGROUND_COLOR = "bg-historical-msg-system";
|