frigate/web/src/api/baseUrl.ts
Blake Blackshear bdebb99b5a Use new UI (#8983)
* fixup build

* swap frontends
2024-01-31 12:56:11 +00:00

7 lines
174 B
TypeScript

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