コンテンツにスキップ

typedRoutes

静的に型付けされたリンクの試験的なサポート。この機能を使用するには、プロジェクトで App Router と TypeScript を使用する必要があります。

next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
  experimental: {
    typedRoutes: true,
  },
}
 
module.exports = nextConfig