xLog/app/lib/constants.ts

10 lines
274 B
TypeScript

import { description } from "../../package.json"
export const IS_BROWSER = typeof document !== "undefined"
export const IS_PROD = IS_BROWSER
? !location.hostname.endsWith("localhost")
: process.env.NODE_ENV === "production"
export const APP_DESCRIPTION = description