2025-09-29 15:21:22 +01:00
|
|
|
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;
|
2025-09-26 11:42:12 +01:00
|
|
|
|
|
|
|
|
export const OUTSIDE_CAM_BASE = import.meta.env.VITE_OUTSIDE_BASEURL;
|