14 lines
No EOL
289 B
TypeScript
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; |