Bypassing Koa's response handling is not supported. Avoid using the following node properties res.writeHead()
[issue link]Bypassing Koa’s response handling is not supported. Avoid using the following node properties:
res.statusCode
res.writeHead()
res.write()
res.end()
but
server.js 40 line
context.res.writeHead(opts.status, {
‘Location’: opts.path
})
context.res.end()