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>
17 lines
No EOL
476 B
Text
17 lines
No EOL
476 B
Text
const error = new Proxy({}, {
|
|
get (_target) {
|
|
throw Object.defineProperty(new Error('Using Client Components is not allowed in this environment.'), "__NEXT_ERROR_CODE", {
|
|
value: "E44",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
});
|
|
export default new Proxy({}, {
|
|
get: (_target, p)=>{
|
|
if (p === '__esModule') return true;
|
|
return error;
|
|
}
|
|
});
|
|
|
|
//# sourceMappingURL=use-client-disallowed.js.map |