79624472

Date: 2025-05-16 04:31:57
Score: 1
Natty:
Report link
 export const config = {
  matcher: ['/:slug', '/:slug/*'], // Protect both /[slug] and /[slug]/nested
};

Explanation: /[slug]/* doesn’t match /[slug] (no trailing slash). You must explicitly match /:slug if you want to include it.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anand Kumar