Skip to content

Commit

Permalink
Make next.config.js keys optional
Browse files Browse the repository at this point in the history
  • Loading branch information
PepijnSenders committed May 17, 2021
1 parent 218c611 commit 56988d3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/next/next-server/server/config-shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ export type NextConfig = { [key: string]: any } & {
validator?: string
skipValidation?: boolean
}
turboMode: boolean
turboMode?: boolean
eslint?: boolean
reactRoot: boolean
enableBlurryPlaceholder: boolean
disableOptimizedLoading: boolean
gzipSize: boolean
reactRoot?: boolean
enableBlurryPlaceholder?: boolean
disableOptimizedLoading?: boolean
gzipSize?: boolean
}
}

Expand Down

0 comments on commit 56988d3

Please sign in to comment.