/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', reactStrictMode: true, transpilePackages: ['@edr/types', '@edr/ui-common'], env: { NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:4000', }, images: { unoptimized: false, }, }; module.exports = nextConfig;