typedRoutes

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

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

module.exports = nextConfig