Files
frigate/web/src/api/baseUrl.ts
T

8 lines
170 B
TypeScript
Raw Normal View History

declare global {
2024-02-28 15:23:56 -07:00
interface Window {
baseUrl?: string;
}
2024-02-28 15:23:56 -07:00
}
2024-02-28 15:23:56 -07:00
export const baseUrl = `${window.location.protocol}//${window.location.host}${window.baseUrl || "/"}`;