all repos — archive/homestead @ b45b4e37af14d94726b0c5d2691289886c0527cf

My future indieweb platform

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