code-share/lib/consts.ts

5 lines
137 B
TypeScript

export const BASE_URL =
typeof window !== "undefined"
? location.protocol + "//" + location.host
: process.env.BASE_URL || "";