We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RangeError: Maximum call stack size exceeded at RegExp.test (native) at ServerResponse.res.render [as _render]
var app = express() ... app.use(helper('appName)) app.use(appRouter)
server.use(app)
var admin = express()
//same name or different name does not matter admin.use(helper('appName'))
//all routes fails in 'res.render()' call with above error app.use(adminRouter)
server.use(admin)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Error Reported
RangeError: Maximum call stack size exceeded
at RegExp.test (native)
at ServerResponse.res.render [as _render]
Happens when I use multiple mounts.
e.g
var app = express()
...
app.use(helper('appName))
app.use(appRouter)
mount 1
server.use(app)
var admin = express()
//same name or different name does not matter
admin.use(helper('appName'))
//all routes fails in 'res.render()' call with above error
app.use(adminRouter)
mount 2
server.use(admin)
The text was updated successfully, but these errors were encountered: