config: override base_url in development
Alan Pearce alan@alanpearce.eu
Mon, 01 Apr 2024 20:34:46 +0200
1 files changed, 5 insertions(+), 1 deletions(-)
jump to
M src/config.ts → src/config.ts
@@ -2,4 +2,8 @@ import path from "node:path"; import fs from "node:fs"; import toml from "toml"; -export default toml.parse(fs.readFileSync("config.toml", "utf-8")); +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;