blob: e9569206e3a5e18d73d9ee5c50673a44cd2c102c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export const domain = window.location.hostname;
export const port = "8080";
export const connectionAddress = `wss://${domain}:${port}/ws`;
export const endpoints = {
destination: "/app/chat",
subscription: "/sub/chat",
history: "/api/v1/msg/",
user: "/api/v1/user",
auth: "/api/v1/auth",
register: "/api/v1/register",
oauth2: "",
};
export const contentTypes = {
json: {
"Content-Type": "application/json; charset=utf-8",
},
};
|