Menu

typedRoutes

Experimentelle Unterstützung für statisch typisierte Links. Für dieses Feature ist die Verwendung des App Routers sowie TypeScript in Ihrem Projekt erforderlich.

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