all repos — website @ a8083444ef7b90f65e7f1a5d8f1b5c81e0dc2028

My website

src/config.ts (view raw)

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

const config = toml.parse(fs.readFileSync("config.toml", "utf-8"));
if (import.meta.env.NODE_ENV === "development") {
  config.base_url = "http://localhost:3000";
}
export default config;