📘

Next14のAppRouterでPageRouterのAPIを作る方法

2024/03/23に公開

next.config.js内にbodyParser: falseを記述

/** @type {import('next').NextConfig} */
const nextConfig = {
  // 以下を指定
  api: {
    bodyParser: false,
  },
};

module.exports = nextConfig;

これでAppRouterのプロジェクト内でもPageRouterのAPIを作ることができる

GitHubで編集を提案

Discussion