typedRoutes (experimental)
Statik olarak yazılan bağlantılar için deneysel destek. Bu özellik, projenizde TypeScript'in yanı sıra App Router'ın kullanılmasını gerektirir.
next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
typedRoutes: true,
},
}
module.exports = nextConfig