Remove unused function
Alan Pearce alan@alanpearce.eu
Wed, 13 Sep 2023 06:21:16 +0200
1 files changed, 0 insertions(+), 6 deletions(-)
jump to
M src/index.ts → src/index.ts
@@ -1,8 +1,6 @@ import path from "node:path"; import fs, { Stats } from "node:fs"; import fsp from "node:fs/promises"; -import util from "node:util"; - import { withHtmlLiveReload } from "bun-html-live-reload"; import readConfig from "./config"; @@ -12,10 +10,6 @@ const publicDir = path.resolve(base, "public") + path.sep; const config = readConfig(base); const defaultHeaders = config.extra.headers; - -function getFilename(name: string): string { - return path.join(publicDir, `${name}`); -} type File = { filename: string;