๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ error.tsx ยท 10 lines
1
2
3
4
5
6
7
8
9
10/**
 * Next.js compat: global-error/basic โ€” local error boundary for metadata errors
 * Source: https://github.com/vercel/next.js/blob/canary/test/e2e/app-dir/global-error/basic/app/metadata-error-with-boundary/error.js
 */
"use client";

export default function ErrorBoundary() {
  return <p id="error">Local error boundary</p>;
}