fix: add hostname and port configuration to export

This commit is contained in:
René Schober
2026-03-20 13:00:55 +01:00
parent 4d6424e82e
commit f5c4b33f60

View File

@@ -23,4 +23,6 @@ registerRoutes(app);
export default {
fetch: app.fetch,
websocket,
hostname: '0.0.0.0',
port: Number(process.env.PORT ?? 3000)
};