Init website

This commit is contained in:
wont-stream 2025-04-08 06:40:24 -04:00
parent ec5e3ffbc4
commit e4a18bfba9
10 changed files with 492 additions and 0 deletions

10
index.ts Normal file
View file

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