1👍
You can’t pass multiple plugins to a single app.use()
method.
Instead, you have to chain them – one plugin each:
app.use(…).use(…)
Source:stackexchange.com
1👍
You can’t pass multiple plugins to a single app.use()
method.
Instead, you have to chain them – one plugin each:
app.use(…).use(…)