mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 18:19:55 +00:00
16 lines
498 B
TypeScript
16 lines
498 B
TypeScript
// TODO
|
|
// const host = `${window.location.hostname}`;
|
|
// const port = `${
|
|
// window.location.port == '4444' ? '8536' : window.location.port
|
|
// }`;
|
|
// const endpoint = `${host}:${port}`;
|
|
|
|
// export const wsUri = `${
|
|
// window.location.protocol == 'https:' ? 'wss://' : 'ws://'
|
|
// }${endpoint}/api/v1/ws`;
|
|
|
|
const host = '192.168.50.60';
|
|
const port = 8536;
|
|
const endpoint = `${host}:${port}`;
|
|
export const wsUri = `ws://${endpoint}/api/v1/ws`;
|
|
export const httpUri = `http://${endpoint}/api/v1`;
|