mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-07 14:04:10 +03:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
|
|
declare global {
|
||
|
|
interface Window {
|
||
|
|
baseUrl?: any;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export const baseUrl = `${window.location.protocol}//${window.location.host}${window.baseUrl || '/'}`;
|