feat: Add common package * Add isEdge, safeTry and dataCache to new common package * Add eslint and move prettier config * Fix yarn lock * Clean up tests * Add lint-staged config to common * Add missing dependencies Approved-by: Joakim Jäderberg
30 lines
881 B
TypeScript
30 lines
881 B
TypeScript
import { createEnv } from "@t3-oss/env-nextjs"
|
|
import { z } from "zod"
|
|
|
|
export const env = createEnv({
|
|
/**
|
|
* Due to t3-env only checking typeof window === "undefined"
|
|
* and Netlify running Deno, window is never "undefined"
|
|
* https://github.com/t3-oss/t3-env/issues/154
|
|
*/
|
|
isServer: true,
|
|
server: {
|
|
NODE_ENV: z.enum(["development", "test", "production"]),
|
|
REDIS_API_HOST: z.string().optional(),
|
|
REDIS_API_KEY: z.string().optional(),
|
|
BRANCH:
|
|
process.env.NODE_ENV !== "development"
|
|
? z.string()
|
|
: z.string().optional().default("dev"),
|
|
GIT_SHA: z.string().optional(),
|
|
},
|
|
emptyStringAsUndefined: true,
|
|
runtimeEnv: {
|
|
NODE_ENV: process.env.NODE_ENV,
|
|
REDIS_API_HOST: process.env.REDIS_API_HOST,
|
|
REDIS_API_KEY: process.env.REDIS_API_KEY,
|
|
BRANCH: process.env.BRANCH,
|
|
GIT_SHA: process.env.GIT_SHA,
|
|
},
|
|
})
|