Skip to content

Commit e7b9255

Browse files
committed
feat(overmind): pass query param to identify devtools
1 parent df534ed commit e7b9255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/node_modules/overmind-devtools-client/src/BackendConnector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class WebsocketConnector {
1212
private callbacks: {
1313
[event: string]: Function[]
1414
} = {}
15-
private socket = new WebSocket('ws://localhost:1040')
15+
private socket = new WebSocket('ws://localhost:3031?devtools=1') // TODO should be able to configure
1616
private messagesBeforeConnected: Array<[string, any, any]> = []
1717
private isOpen = false
1818
constructor() {

0 commit comments

Comments
 (0)