openrag/frontend/next.config.ts
2025-08-01 10:12:39 -04:00

10 lines
204 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Increase timeout for API routes
experimental: {
proxyTimeout: 300000, // 5 minutes
},
};
export default nextConfig;