app catch all

This commit is contained in:
monoid 2021-01-25 21:43:17 +09:00
parent fcfaff1ef0
commit d87175b73a

10
app.ts
View File

@ -51,7 +51,7 @@ if (!setting.cli) {
}); });
try{ try{
const server = await create_server(); const server = await create_server();
server.start_server(); const app = server.start_server();
registerChannel(server.userController); registerChannel(server.userController);
await wnd.loadURL(`http://localhost:${setting.port}`); await wnd.loadURL(`http://localhost:${setting.port}`);
} }
@ -102,8 +102,12 @@ if (!setting.cli) {
}); });
} else { } else {
(async () => { (async () => {
const server = await create_server(); try {
server.start_server(); const server = await create_server();
server.start_server();
} catch (error) {
console.log(error);
}
})(); })();
} }
const loading_html = `<!DOCTYPE html> const loading_html = `<!DOCTYPE html>