forked from Github/frigate
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
declare global {
|
|
interface Window {
|
|
baseUrl?: string;
|
|
}
|
|
}
|
|
|
|
export const baseUrl = `${window.location.protocol}//${window.location.host}${window.baseUrl || "/"}`;
|