You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before using T3-env, I was splitting my config in two file one for local and one for shared.
constServerConfigSchema=z.object({auth: z.object({secret: z.string(),/** * How many time in seconds the link should be considered valid. **/magicLinkTTL: z.number().default(Duration.fromObject({hours: 1}).as("seconds")),}),notifications: z.object({resend: z.object({apiKey: z.string(),fromAddress: z.string().default("NoReply <[email protected]>"),}),}),}
I was wondering could we add some kind of nesting / namespacing support?
The text was updated successfully, but these errors were encountered:
Hi,
I like having a config like this one:
Before using T3-env, I was splitting my config in two file one for local and one for shared.
I was wondering could we add some kind of nesting / namespacing support?
The text was updated successfully, but these errors were encountered: