diff --git a/apps/marketing/next.config.js b/apps/marketing/next.config.js index c9193ed77..e586b1e4f 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 cb05de902..4a80a6b43 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} */