自分用メモ。
Koa.js
で Response の Headers を設定するには
app.use(async ctx => {
ctx.set('Content-Type', 'text/html');
});
こうする。
参考:[javascript - How do I set headers to all responses in Koa.js? (Stack Overflow)](How do I set headers to all responses in Koa.js?)