When defining custom routes a route was added that causes an error during parsing. This can be due to trying to use normal RegExp
syntax like negative lookaheads (?!exclude
) without following path-to-regexp
's syntax for it.
Wrap the RegExp
part of your source
as an un-named parameter.
Before
{
source: '/feedback/(?!general)',
destination: '/feedback/general'
}
After
{
source: '/feedback/((?!general).*)',
destination: '/feedback/general'
}