all repos — website @ b45b4e37af14d94726b0c5d2691289886c0527cf

My website

Reformat with prettier

Alan Pearce
commit

b45b4e37af14d94726b0c5d2691289886c0527cf

parent

7fc8048d3104cf9e129920326b30aaefaaaeb89b

1 file changed, 5 insertions(+), 5 deletions(-)

changed files
M src/index.tssrc/index.ts
@@ -1,10 +1,10 @@
-import { withHtmlLiveReload } from "bun-html-live-reload" -import serveStatic from "serve-static-bun" +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] : "./" +const dir = Bun.argv.length > 2 ? Bun.argv[Bun.argv.length - 1] : "./"; export default withHtmlLiveReload({ fetch: serveStatic(dir, { - dotfiles: "allow" + dotfiles: "allow", }), -}) +});