aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/config.ts
blob: 3bb5bfd5fce896f561ecc77af4125fe77a329fd4 (plain)
1
2
3
4
5
if (!process.env.NEXT_PUBLIC_BACKEND_URL) {
    throw new Error("NEXT_PUBLIC_BACKEND_URL env var not defined!");
}

export const backendUrl = process.env.NEXT_PUBLIC_BACKEND_URL;