fix: invalid url on main page in self host

This commit is contained in:
Tameem Asim
2023-10-18 16:28:57 +05:00
parent 9434f9e2e4
commit acd3e6d613
2 changed files with 2 additions and 2 deletions

View File

@ -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} */

View File

@ -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} */