You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is being caused by express-handlebars it looks like they try to load partials when rendering a view even if you don't use partials. The default folder is /views/partials. You can try to set it to undefined in your options hash:
hbs({
...
partialsDir: undefined,
...
});
If that doesn't work, then you can try to just create the dummy folder.
Hi!
I'm having this error but I'm not using partials... do you know why it could be?
thanks
The text was updated successfully, but these errors were encountered: