Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/46fa4a34c5af054aebea47856abb04a50277294d23ec8d3ee325c970353f903abdb5308daecdec5f7f1d20ef1bfb1724387a1e77d90e0592cfa6973ed6ec5e
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
581 B
Text

'use client';
import { BailoutToCSRError } from './bailout-to-csr';
/**
* If rendered on the server, this component throws an error
* to signal Next.js that it should bail out to client-side rendering instead.
*/ export function BailoutToCSR({ reason, children }) {
if (typeof window === 'undefined') {
throw Object.defineProperty(new BailoutToCSRError(reason), "__NEXT_ERROR_CODE", {
value: "E394",
enumerable: false,
configurable: true
});
}
return children;
}
//# sourceMappingURL=dynamic-bailout-to-csr.js.map