mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-17 10:13:56 -05:00
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
export const environment = {
|
|
production: true,
|
|
apiBaseUrl: "/api/",
|
|
apiVersion: "2",
|
|
appTitle: "Paperless-ng",
|
|
version: "1.3.1",
|
|
webSocketHost: window.location.host,
|
|
webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:")
|
|
};
|