diff --git a/apps/marketing/next.config.js b/apps/marketing/next.config.js index aeb06bdfd..e832dbd7c 100644 --- a/apps/marketing/next.config.js +++ b/apps/marketing/next.config.js @@ -3,7 +3,7 @@ const path = require('path'); const { withContentlayer } = require('next-contentlayer'); require('dotenv').config({ - path: path.join(__dirname, '../../.env.local'), + path: path.join(__dirname, '../../.env'), }); /** @type {import('next').NextConfig} */ diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 92004a3bc..a4e386fd0 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -3,7 +3,7 @@ const path = require('path'); const { version } = require('./package.json'); require('dotenv').config({ - path: path.join(__dirname, '../../.env.local'), + path: path.join(__dirname, '../../.env'), }); /** @type {import('next').NextConfig} */