Rocky_Mountain_Vending/.pnpm-store/v10/files/4f/f1e02de0781b029322d5874ef1a68732b29bdd2bc8285a8e042315c7ed16d97f57ea13ffdc96b3da5dca8755d9a424185fcb5839bb323384e2d651574fbadc
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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