Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Ensure generateBuildId is not required in config type (vercel#27443)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk authored Jul 23, 2021
1 parent 55b5c41 commit 5561bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/server/config-shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export type NextConfig = { [key: string]: any } & {
cleanDistDir?: boolean
assetPrefix?: string
useFileSystemPublicRoutes?: boolean
generateBuildId: () => string | null
generateBuildId?: () => string | null
generateEtags?: boolean
pageExtensions?: string[]
compress?: boolean
Expand Down

0 comments on commit 5561bc8

Please sign in to comment.