UNPKG

next

Version:

The React Framework

10 lines (9 loc) 324 B
export const lazyRenderAppPage = (...args)=>{ if (process.env.NEXT_MINIMAL) { throw new Error("Can't use lazyRenderAppPage in minimal mode"); } else { const render = require('./module.compiled').renderToHTMLOrFlight; return render(...args); } }; //# sourceMappingURL=module.render.js.map