You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running my app with yarn run start, the websocketStore connects to localhost:38535 regardless of what I have in the url parameter:
import websocketStore from 'svelte-websocket-store';
let myStore = websocketStore("ws://localhost:8080/ws", initialValue, []);
I am using the websocket store with a Go backend, not Node, so this is not helpful in my situation, though I can see how it would be if I were using Node. It does connect to my specified URL as well, but any commands seem to be sent to only the Node server Yarn is running.
Is there a way to disable this behaviour?
The text was updated successfully, but these errors were encountered:
When running my app with
yarn run start
, thewebsocketStore
connects tolocalhost:38535
regardless of what I have in theurl
parameter:I am using the websocket store with a Go backend, not Node, so this is not helpful in my situation, though I can see how it would be if I were using Node. It does connect to my specified URL as well, but any commands seem to be sent to only the Node server Yarn is running.
Is there a way to disable this behaviour?
The text was updated successfully, but these errors were encountered: