feat(chatModal): add support for secure websockets (wss) in production environment
This commit is contained in:
parent
8e1cb1d732
commit
9ffa88a773
1 changed files with 3 additions and 1 deletions
|
|
@ -59,7 +59,9 @@ export default function ChatModal({
|
|||
const urlWs =
|
||||
process.env.NODE_ENV === "development"
|
||||
? `ws://localhost:7860/chat/${flow.id}`
|
||||
: `ws://${window.location.host}/chat/${flow.id}`;
|
||||
: `${window.location.protocol === "https:" ? "wss" : "ws"}://${
|
||||
window.location.host
|
||||
}/chat/${flow.id}`;
|
||||
|
||||
const newWs = new WebSocket(urlWs);
|
||||
newWs.onopen = () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue