config: override base_url in development
1 file changed, 5 insertions(+), 1 deletion(-)
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;