typedRoutes (تجريبي)

دعم تجريبي للـروابط ذات أنواع ثابتة. هذه الميزة تتطلب استخدام موجه التطبيق (App Router) بالإضافة إلى TypeScript في مشروعك.

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

module.exports = nextConfig