Some checks failed
Build and Deploy / deploy (push) Failing after 33m4s
Raise Node heap to 4GB for Docker builds and extend Next.js static page generation timeout to 120s to prevent resource page build failures. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
staticPageGenerationTimeout: 120,
|
|
};
|
|
|
|
export default nextConfig;
|