Skip to content

Commit

Permalink
config-schema.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jul 1, 2024
1 parent 4d35d60 commit e7c5a6d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/next/src/server/config-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,14 @@ export const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>
.optional(),
relay: z
.object({
projects: z
.array(
z.object({
rootDir: z.string(),
artifactDirectory: z.string().optional(),
})
)
.optional(),
src: z.string(),
artifactDirectory: z.string().optional(),
language: z.enum(['javascript', 'typescript', 'flow']).optional(),
Expand Down

0 comments on commit e7c5a6d

Please sign in to comment.