Next.jsのAPIルートのパスを変更するには、next.config.jsでリライトルールを設定します。
// next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/apinext/:path*',
destination: '/api/:path*',
},
];
},
}
module.exports = nextConfig