openrag/frontend/next.config.ts
2025-09-07 19:20:06 -04:00

14 lines
290 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;