/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, swcMinify: true, env: { NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8000/api/v1/chat', }, // برای استفاده از API های خارجی async rewrites() { return [ { source: '/api/v1/chat', destination: `${process.env.API_PROXY_URL || 'http://localhost:8000'}/api/v1/chat`, }, ]; }, }; module.exports = nextConfig;