generateBuildId
Last updated June 16, 2025
Next.js generates an ID duringnext 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 thegenerateBuildId command innext.config.js:
module.exports= {generateBuildId:async ()=> {// This could be anything, using the latest git hashreturnprocess.env.GIT_HASH },}