typedRoutes (實驗性功能)

靜態類型連結 的實驗性支援功能。此功能需在專案中使用 App Router 及 TypeScript。

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

module.exports = nextConfig