/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, output: 'standalone', env: { API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:5000/api/v1', }, } module.exports = nextConfig