import index from './index.html';
const server = Bun.serve({
routes: {
'/': index
},
development: false
});
console.log(server.url.href);