next.js/test/e2e/app-dir/global-error/with-style-import/app/layout.tsx
layout.tsx13 lines238 B
// to avoid bailing out of the build
export const dynamic = 'force-dynamic'

export default function RootLayout({ children }) {
  throw new Error('Root Layout Error')

  return (
    <html>
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN