Websocket connects

This commit is contained in:
Owen
2025-08-14 11:58:08 -07:00
parent aabfa91f80
commit 200e3af384
6 changed files with 38 additions and 14 deletions

View File

@@ -17,11 +17,13 @@ async function startServers() {
// Start all servers
const apiServer = createApiServer();
const internalServer = createInternalServer();
const nextServer = await createNextServer();
let hybridClientServer;
let nextServer;
if (config.isHybridMode()) {
hybridClientServer = createHybridClientServer();
hybridClientServer = await createHybridClientServer();
} else {
nextServer = await createNextServer();
}
let integrationServer;