all repos — website @ 51cc4389f6dc7947ee34d1b3367876941e8a8fbc

My website

src/index.ts (view raw)

1
2
3
4
5
6
7
8
9
10
import { withHtmlLiveReload } from "bun-html-live-reload"
import serveStatic from "serve-static-bun"

const dir = Bun.argv.length > 2 ? Bun.argv[Bun.argv.length - 1] : "./"

export default withHtmlLiveReload({
  fetch: serveStatic(dir, {
    dotfiles: "allow"
  }),
})