You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constKoa=require('koa')constnext=require('next')constdev=process.env.NODE_ENV!=='production'constapp=next({dev})consthandle=app.getRequestHandler()// 用来处理 http 请求的响应app.prepare().then(()=>{constserver=newKoa()server.use(async()=>{awaithandle(ctx.req,ctx.res)ctx.respond=false})server.listen(3000,()=>{console.log('koa server listening on 3000')})})
2-3
The text was updated successfully, but these errors were encountered:
React16.8+Next.js+Koa2开发Github全栈项目
模块版本
创建 nextjs 的项目
使用 next 作为 koa 中间件
根目录下创建 server.js 文件
2-3
The text was updated successfully, but these errors were encountered: