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>
14 lines
No EOL
466 B
Text
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 |