fix: change default bind to be localhost

This commit is contained in:
2026-05-26 20:15:26 +00:00
parent de02c29fc9
commit af6d70fe6e
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export function createServer() {
return {
port: Number(process.env.PORT ?? "3000"),
hostname: process.env.HOST ?? "0.0.0.0",
hostname: process.env.HOST ?? "localhost",
routes: {
"/": (request: Request) => {
const drawing = drawingStore.ensureInitialDrawing();