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 3bba10c commit fe4e785Copy full SHA for fe4e785
apps/docs/src/app/[locale]/layout.tsx
@@ -26,8 +26,8 @@ const geistMono = Geist_Mono({
26
export const generateMetadata = (): Metadata =>
27
generateMetadataRootLayout(vitNodeConfig);
28
29
-export const generateStaticParams = () =>
30
- vitNodeConfig.i18n.locales.map(locale => ({ locale: locale.code }));
+// export const generateStaticParams = () =>
+// vitNodeConfig.i18n.locales.map(locale => ({ locale: locale.code }));
31
32
export default async function LocaleLayout(props: RootLayoutProps) {
33
const { locale } = await props.params;
apps/docs/src/app/layout.tsx
@@ -1,5 +1,7 @@
1
import "./global.css";
2
3
+export const experimental_ppr = true;
4
+
5
export default async function RootLayout({
6
children,
7
}: {
0 commit comments