Rocky_Mountain_Vending/.pnpm-store/v10/files/d2/43a83a917b481048dcca52e14baeb32afe56413f135b384e953d0d9260f246fe3ccf007abf35638a738a3e11b707097cb85ca76627fc4fb8d3ebff72855ef0
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

24 lines
No EOL
878 B
Text

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { HTTPAccessFallbackBoundary } from './http-access-fallback/error-boundary';
// TODO: error on using forbidden and unauthorized in root layout
export function bailOnRootNotFound() {
throw Object.defineProperty(new Error('notFound() is not allowed to use in root layout'), "__NEXT_ERROR_CODE", {
value: "E192",
enumerable: false,
configurable: true
});
}
function NotAllowedRootHTTPFallbackError() {
bailOnRootNotFound();
return null;
}
export function DevRootHTTPAccessFallbackBoundary({ children }) {
return /*#__PURE__*/ _jsx(HTTPAccessFallbackBoundary, {
notFound: /*#__PURE__*/ _jsx(NotAllowedRootHTTPFallbackError, {}),
children: children
});
}
//# sourceMappingURL=dev-root-http-access-fallback-boundary.js.map