diff --git a/next.config.js b/next.config.js index e003f619afda..7145ece44ea4 100644 --- a/next.config.js +++ b/next.config.js @@ -4,6 +4,9 @@ const nextConfig = { reactStrictMode: true, // for hosting under GitHub pages basePath: '', + // Increase timeout for generating static pages from default 60s to avoid issues like: + // Restarted static page generation for /modules/xxx/y.y.y because it took more than 60 seconds + staticPageGenerationTimeout: 600 } module.exports = nextConfig