generateBuildId
Next.js 在 `next build` 期间生成一个 ID,用于识别正在提供服务的应用程序版本。同一构建应用于启动多个容器。
如果您要为环境的每个阶段重建,则需要生成一个一致的构建 ID 以在容器之间使用。在 `next.config.js` 中使用 `generateBuildId` 命令
next.config.js
module.exports = {
generateBuildId: async () => {
// This could be anything, using the latest git hash
return process.env.GIT_HASH
},
}
这有帮助吗?