mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
export const environment = {
|
|
production: true,
|
|
apiBaseUrl: "/api/",
|
|
appTitle: "Paperless-ng",
|
|
version: "1.1.4",
|
|
webSocketHost: window.location.host,
|
|
webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:")
|
|
};
|