import { connection } from 'next/server' export const unstable_instant = false export default async function RootLayout({ children }) { await connection() return (

This is a blocking root layout. It is configured with{' '} unstable_instant = false, so it should not be required to produce a static shell.


{children} ) }