Rocky_Mountain_Vending/.pnpm-store/v10/files/5b/12a1e3b1dc21379632386d70171adbe6213e10b48e46fbddc9d2d54e1420d2be214a9f6cc7b4f8f94f290cb2b1a8672e0b40a42d50656a25b1033a3d29d98b
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

7 lines
No EOL
370 B
Text

// TODO: isWellKnownError -> isNextInternalError
// isReactLargeShellError -> isWarning
export function isReactLargeShellError(error) {
return typeof error === 'object' && error !== null && 'message' in error && typeof error.message === 'string' && error.message.startsWith('This rendered a large document (>');
}
//# sourceMappingURL=react-large-shell-error.js.map