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>
12 lines
No EOL
433 B
Text
12 lines
No EOL
433 B
Text
import { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr';
|
|
import { isNextRouterError } from './is-next-router-error';
|
|
export function unstable_rethrow(error) {
|
|
if (isNextRouterError(error) || isBailoutToCSRError(error)) {
|
|
throw error;
|
|
}
|
|
if (error instanceof Error && 'cause' in error) {
|
|
unstable_rethrow(error.cause);
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=unstable-rethrow.browser.js.map |