Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
320 B
Text
8 lines
320 B
Text
/**
|
|
* Needs to be in the same error boundary as the shell.
|
|
* If it commits, we know we recovered from an SSR error.
|
|
* If it doesn't commit, we errored again and React will take care of error reporting.
|
|
*/
|
|
export declare function ReplaySsrOnlyErrors({ onBlockingError, }: {
|
|
onBlockingError: () => void;
|
|
}): null;
|