const path = require('node:path'); require('dotenv').config({ path: path.resolve(__dirname, '../.env') }); /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, } module.exports = nextConfig