ipv4.army/index.ts
2025-04-08 06:40:24 -04:00

10 lines
No EOL
175 B
TypeScript

import index from "./src/index.html";
Bun.serve({
routes: {
"/": index,
},
development: true,
});
console.log("Server started on http://localhost:3000");