export const isDev = process.env.NODE_ENV === "development" export const isProd = process.env.NODE_ENV === "production" export const isClient = typeof document !== "undefined" export const isServer = !isClient export const basementLog = ` ██╗ ██║ ██████╗ ██╔══██╗ ██╗ ██████╔╝ ██╝ ╚═════╝ From the basement. https://basement.studio `