blakeblackshear.frigate/web/src/api/baseUrl.ts
2024-02-28 16:23:56 -06:00

8 lines
170 B
TypeScript

declare global {
interface Window {
baseUrl?: string;
}
}
export const baseUrl = `${window.location.protocol}//${window.location.host}${window.baseUrl || "/"}`;