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

* swap frontends
2023-12-16 10:20:59 -06:00

7 lines
174 B
TypeScript

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