// next.config.ts
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // ... بقیه تنظیمات ...
async rewrites() {
    return [
      {
        source: '/api/:path*',
        destination: 'http://localhost:8000/:path*',
      },
    ];
  },
  // 🆕 اینو اضافه کن:
  serverExternalPackages: [],
  
  // یا اگه از Turbopack استفاده می‌کنی:
  experimental: {
    // ... تنظیمات موجود ...
  },
};

export default nextConfig;