Foxnouns.NET/Foxnouns.Frontend/app/env.server.ts

6 lines
181 B
TypeScript
Raw Normal View History

2024-09-14 18:07:49 +02:00
import "dotenv/config";
import { env } from "node:process";
export const API_BASE = env.API_BASE || "https://pronouns.localhost/api";
2024-09-10 20:33:22 +02:00
export const LANGUAGE = env.LANGUAGE || "en";