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>
24 lines
No EOL
650 B
Text
24 lines
No EOL
650 B
Text
'use client';
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "BailoutToCSR", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return BailoutToCSR;
|
|
}
|
|
});
|
|
const _bailouttocsr = require("./bailout-to-csr");
|
|
function BailoutToCSR({ reason, children }) {
|
|
if (typeof window === 'undefined') {
|
|
throw Object.defineProperty(new _bailouttocsr.BailoutToCSRError(reason), "__NEXT_ERROR_CODE", {
|
|
value: "E394",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
return children;
|
|
}
|
|
|
|
//# sourceMappingURL=dynamic-bailout-to-csr.js.map |