We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d9daeb commit b417d5dCopy full SHA for b417d5d
CHANGELOG.md
@@ -0,0 +1 @@
1
+- Increase Next.js config bundle timeout to 60 seconds (#6214)
src/frameworks/next/index.ts
@@ -76,6 +76,7 @@ export const support = SupportLevel.Preview;
76
export const type = FrameworkType.MetaFramework;
77
export const docsUrl = "https://firebase.google.com/docs/hosting/frameworks/nextjs";
78
79
+const BUNDLE_NEXT_CONFIG_TIMEOUT = 60_000;
80
const DEFAULT_NUMBER_OF_REASONS_TO_LIST = 5;
81
82
function getReactVersion(cwd: string): string | undefined {
@@ -472,8 +473,6 @@ export async function ɵcodegenPublicDirectory(
472
473
);
474
}
475
-const BUNDLE_NEXT_CONFIG_TIMEOUT = 10_000;
476
-
477
/**
478
* Create a directory for SSR content.
479
*/
0 commit comments