← back to Nineoh Guide

packages/core/src/index.ts

16 lines

export * from "./schemas";
export * from "./slug";

/** Canonical public site origin — used in JSON-LD + sitemap. Set via env in prod. */
export const SITE_URL =
  (typeof process !== "undefined" && process.env?.NEXT_PUBLIC_SITE_URL) ||
  "https://unofficial-90210-guide.example";

/** App-wide constants shared by web + mobile. */
export const APP = {
  displayName: "Unofficial 90210 Guide",
  unofficial: true,
  disclaimerShort:
    "Unofficial, fan-made. Not affiliated with or endorsed by the series' producers, network, or cast.",
} as const;