8 lines
237 B
TypeScript
8 lines
237 B
TypeScript
const rawCamBase = import.meta.env.VITE_CAM_BASE;
|
|
export const CAM_BASE =
|
|
rawCamBase && rawCamBase.trim().length > 0
|
|
? rawCamBase
|
|
: window.location.origin;
|
|
|
|
export const OUTSIDE_CAM_BASE = import.meta.env.VITE_OUTSIDE_BASEURL;
|