Middleware config matcher settings #74779
Replies: 2 comments 3 replies
-
Looking at the Next.js Middleware documentation (https://nextjs.org/docs/app/building-your-application/routing/middleware#matching-paths), it states that "matcher values need to be constants so they can be statically analyzed at build-time. Dynamic values such as variables will be ignored." The spread operator ( |
Beta Was this translation helpful? Give feedback.
-
As the other comment says, things such as: export const config = {
matcher: someValue ? ["/dashboard/(.*)", "/private/(.*)", "/article/(.*)", "/article"] : [],
}; Or, You can see, next.js/crates/next-core/src/util.rs Line 567 in be99a2f parse_config_from_js_value , or parse_route_matcher_from_js_value , - it was a lot more accessible for non rustaceans, when this was done in JavaScript 😅
|
Beta Was this translation helpful? Give feedback.
-
Summary
If I use a configuration like this in
middleware.ts
:A warning occurs:
But if I change it to:
The problem is gone.
But I want to group related paths, how should I accomplish this?
I searched the issues for an answer, but not much was found.
Additional information
No response
Example
No response
Beta Was this translation helpful? Give feedback.
All reactions