2025-09-23 13:03:54 +01:00
|
|
|
// const rawCamBase = import.meta.env.VITE_CAM_BASE;
|
|
|
|
|
const rawCamBase = import.meta.env.VITE_OUTSIDE_BASEURL;
|
2025-09-19 15:33:15 +01:00
|
|
|
|
|
|
|
|
export const CAM_BASE =
|
|
|
|
|
rawCamBase && rawCamBase.trim().length > 0
|
|
|
|
|
? rawCamBase
|
|
|
|
|
: window.location.origin;
|