import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Increase timeout for API routes experimental: { proxyTimeout: 300000, // 5 minutes }, // Ignore ESLint errors during build eslint: { ignoreDuringBuilds: true, }, }; export default nextConfig;