7 lines
296 B
TypeScript
7 lines
296 B
TypeScript
// Single source of truth for the public site URL.
|
|
// Override per environment with NEXT_PUBLIC_SITE_URL; falls back to production.
|
|
export const SITE_URL =
|
|
process.env.NEXT_PUBLIC_SITE_URL ?? "https://highlandgamesstudio.com";
|
|
|
|
export const LOGO_URL = `${SITE_URL}/image/Studio/Logo Flat.png`;
|