Files
micromelon-website/next.config.ts
Tim Hadwen a40ba035e6
All checks were successful
Build and Deploy / deploy (push) Successful in -29s
Limit static generation to 4 workers for Docker builds
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 23:03:22 +10:00

14 lines
283 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
staticPageGenerationTimeout: 300,
experimental: {
cpus: 4,
staticGenerationMaxConcurrency: 8,
staticGenerationMinPagesPerWorker: 25,
},
};
export default nextConfig;