typedRoutes

Soporte experimental para enlaces con tipado estático. Esta característica requiere el uso del App Router así como TypeScript en tu proyecto.

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

module.exports = nextConfig