all repos — homestead @ 234c9eadf1e7965fc3a6a669696ddae5e2c4ef11

Code for my website

src/config.ts (view raw)

1
2
3
4
5
6
7
import path from "node:path";
import fs from "node:fs";
import toml from "toml";

export default function readConfig() {
  return toml.parse(fs.readFileSync("config.toml", "utf-8"));
}