mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 15:25:41 +01:00
9 lines
258 B
TypeScript
9 lines
258 B
TypeScript
export const environment = {
|
|
production: true,
|
|
apiBaseUrl: "/api/",
|
|
apiVersion: "1",
|
|
appTitle: "Paperless-ng",
|
|
version: "1.2.1",
|
|
webSocketHost: window.location.host,
|
|
webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:")
|
|
};
|