Rocky_Mountain_Vending/.pnpm-store/v10/files/3c/1cbbb1896142f05aef686e637839a4ee7d028368bc7fd51436208d9f584acb95e2ffb874e0522c4ec7a76311f839b58e938da79ccdc1f73d1ce9f3942ec79a
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
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