as i use nuxt in the koa program like this:
console.log("before render");
await nuxt.render(ctx.req, ctx.res);
console.log("render end");
if i request the static file,only print the before render
,but no see the render end
.
can any one tell me what happened in the nuxt.render?