Rocky_Mountain_Vending/.pnpm-store/v10/files/02/76dc775fec8792f1e289fbe4010078a812b5fea69e62601f92c298b4aa0878942a196e99b25e0a04851a15ed8c662f0884c77588abeffc6845e4e3ff3062c3
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
470 B
Text

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