all repos — website @ 7fc8048d3104cf9e129920326b30aaefaaaeb89b

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"
  }),
})