更改一下服务的监听端口。

This commit is contained in:
徐涛 2024-12-16 16:09:56 +08:00
parent a0dbe4f7fc
commit 65622e08e5

View File

@ -39,6 +39,6 @@ app.get('/', async ({ request }) => {
}); });
}); });
app.listen(3000); app.listen(8000);
console.log(`Server running at http://${app.server?.hostname}:${app.server?.port}`); console.log(`Server running at http://${app.server?.hostname}:${app.server?.port}`);