openrag/frontend/next.config.ts
2025-09-08 17:22:14 -04:00

14 lines
No EOL
289 B
TypeScript

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;