mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
Fix missing port variable, adds build
This commit is contained in:
committed by
Lincoln Stein
parent
3902c467b9
commit
a3a8404f91
@@ -24,7 +24,7 @@ import * as InvokeAI from '../invokeai';
|
||||
export const socketioMiddleware = () => {
|
||||
const { hostname, port } = new URL(window.location.href);
|
||||
|
||||
const socketio = io(`http://${hostname}:9090`, {
|
||||
const socketio = io(`http://${hostname}:${port}`, {
|
||||
timeout: 60000,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user