Rocky_Mountain_Vending/.pnpm-store/v10/files/80/e60c91ad3457d41a926bd7740906aade55f0e2a9d6ae62f2ba6136b4b20d54d75b39c4735a26274fd460be94e32d31dc9b6c5ee19f4b6b159ebe410f984dd6
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

14 lines
No EOL
466 B
Text

export const lazyRenderPagesPage = (...args)=>{
if (process.env.NEXT_MINIMAL) {
throw Object.defineProperty(new Error("Can't use lazyRenderPagesPage in minimal mode"), "__NEXT_ERROR_CODE", {
value: "E272",
enumerable: false,
configurable: true
});
} else {
const render = require('./module.compiled').renderToHTML;
return render(...args);
}
};
//# sourceMappingURL=module.render.js.map