Reduce code to only work with $PWD
Alan Pearce alan@alanpearce.eu
Mon, 18 Sep 2023 11:34:52 +0200
2 files changed, 4 insertions(+), 7 deletions(-)
jump to
M src/app.ts → src/app.ts
@@ -11,10 +11,9 @@ release: `homestead@${Bun.env.FLY_MACHINE_VERSION}`, tracesSampleRate: 1.0, }); -const base = "."; -const publicDir = path.resolve(base, "public") + path.sep; +const publicDir = "public" + path.sep; -const config = readConfig(base); +const config = readConfig(); const defaultHeaders = { ...config.extra.headers, vary: "Accept-Encoding",
M src/config.ts → src/config.ts
@@ -2,8 +2,6 @@ import path from "node:path"; import fs from "node:fs"; import toml from "toml"; -export default function readConfig(base: string) { - const filename = path.join(base, "config.toml"); - - return toml.parse(fs.readFileSync(filename, "utf-8")); +export default function readConfig() { + return toml.parse(fs.readFileSync("config.toml", "utf-8")); }