about summary refs log tree commit diff stats
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/index.ts b/src/index.ts
index 4382aa4..69c9b1a 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,8 +1,7 @@
 import path from "node:path";
 import fs, { Stats } from "node:fs";
 import fsp from "node:fs/promises";
-import { withHtmlLiveReload } from "bun-html-live-reload";
-import type { BunFile } from "bun-types";
+import type { BunFile, Serve } from "bun";
 
 import readConfig from "./config";
 
@@ -104,7 +103,7 @@ function parseIfModifiedSinceHeader(header: string | null): number {
   return header ? new Date(header).getTime() + 999 : 0;
 }
 
-export default withHtmlLiveReload({
+export default {
   fetch: async function (request) {
     const pathname = new URL(request.url).pathname;
     const file = files.get(pathname);
@@ -147,4 +146,4 @@ export default withHtmlLiveReload({
     }
     return serveFile(file);
   },
-});
+} satisfies Serve;