about summary refs log tree commit diff stats
path: root/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/config.ts b/src/config.ts
index 064b038..8fbe3c1 100644
--- a/src/config.ts
+++ b/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"));
 }