#!/usr/bin/env bun import { Hono } from "hono" import { serveStatic } from "hono/bun" import index from "./index.html" const app = new Hono() app.use("/public/*", serveStatic({ root: "./" })) app.get("/", (c) => c.html(index)) export default { port: 3000, fetch: app.fetch, }