mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 23:35:22 +01:00
8 lines
239 B
TypeScript
8 lines
239 B
TypeScript
export const environment = {
|
|
production: true,
|
|
apiBaseUrl: "/api/",
|
|
appTitle: "Paperless-ng",
|
|
version: "1.1.5",
|
|
webSocketHost: window.location.host,
|
|
webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:")
|
|
};
|