📘
Next14のAppRouterでPageRouterのAPIを作る方法
next.config.js
内にbodyParser: false
を記述
/** @type {import('next').NextConfig} */
const nextConfig = {
// 以下を指定
api: {
bodyParser: false,
},
};
module.exports = nextConfig;
これでAppRouterのプロジェクト内でもPageRouterのAPIを作ることができる
Discussion