Files
openproxy/dashboard/next.config.js
Praveen Thirumurugan 8022118500 chore: use node
2025-12-28 02:09:13 +05:30

11 lines
227 B
JavaScript

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