From 5c52ac3a3f14d43ec46f6a559e541d4e544d287f Mon Sep 17 00:00:00 2001 From: siddheshraze Date: Tue, 27 Feb 2024 13:39:43 -0500 Subject: [PATCH] removing next build cache statement --- frontend/next.config.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/next.config.js b/frontend/next.config.js index 70743484..3bd9857e 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -6,10 +6,6 @@ const nextConfig = { }, }, output: 'standalone', - generateBuildId: async () => { - // This could be anything, using the latest git hash - return process.env.GIT_HASH - }, } module.exports = nextConfig