All checks were successful
Build and Deploy / deploy (push) Successful in -29s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
283 B
TypeScript
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;
|