This page is also available as Markdown: request this page's URL with an
Accept: text/markdown header. For an index of Next.js Pages Router documentation, see /docs/pages/llms.txt.generateBuildId
Last updated April 15, 2025
Next.js generates an ID during next build to identify which version of your application is being served. The same build should be used and boot up multiple containers.
If you are rebuilding for each stage of your environment, you will need to generate a consistent build ID to use between containers. Use the generateBuildId command in next.config.js:
next.config.js
module.exports = {
generateBuildId: async () => {
// This could be anything, using the latest git hash
return process.env.GIT_HASH
},
}Good to know: When
deploymentIdis set, Next.js uses a constant build ID andgenerateBuildIdhas no effect. Version skew is detected from the deployment ID instead.
Was this helpful?