summaryrefslogtreecommitdiffhomepage
path: root/packages/frontend/src/lib/config.ts
blob: c22746c4f00eb1fbc07a57702e1ba1ce508f9980 (plain)
1
2
3
4
5
6
const API_BASE = import.meta.env.VITE_API_URL ?? "http://localhost:3000";

export const config = {
	apiBase: API_BASE,
	wsUrl: `${API_BASE.replace(/^http/, "ws")}/ws`,
} as const;