Rocky_Mountain_Vending/.pnpm-store/v10/files/66/c02846cfa78e399b192dddb07ec96b1380d0bd9828f07c6f8a1b3b3e2b84702ed6b82e9be3fa7d156c3beb59125b06cfe39abb4f1f5d3c89d0dfb24d5b2cf5
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

17 lines
No EOL
596 B
Text

// TODO: isWellKnownError -> isNextInternalError
// isReactLargeShellError -> isWarning
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "isReactLargeShellError", {
enumerable: true,
get: function() {
return isReactLargeShellError;
}
});
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