Jon Taylor
added window check
f7b9ff6
raw
history blame
259 Bytes
"use client";
export const apiUrl =
typeof window !== "undefined"
? process.env.NEXT_PUBLIC_API_URL
: process.env.NEXT_PUBLIC_API_URL ||
`${window.location.protocol === "https:" ? "https" : "http"}://${
window.location.host
}`;