From d62bcad657b1eea7494081ab5d6326a1486ff9bd Mon Sep 17 00:00:00 2001 From: giancarlo Date: Wed, 17 Apr 2024 14:05:17 +0800 Subject: [PATCH] Add environment variables and deployment instructions to README The README is updated to include comprehensive instructions and guidance for setting up various environment variables which are essential for the project's configuration. In addition, it provides instructions on how to deploy the project to two popular platforms: Vercel and Cloudflare. --- apps/web/next.config.mjs | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index 4968f6957..bfd5b58de 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -52,9 +52,6 @@ const config = { transform: 'lodash/{{member}}', }, }, - env: { - NEXT_PUBLIC_BUILD_ID: process.env.GIT_HASH ?? performance.now().toString(), - }, /** We already do linting and typechecking as separate tasks in CI */ eslint: { ignoreDuringBuilds: true }, typescript: { ignoreBuildErrors: true },