In login.ejs the include partial generated an error "SyntaxError: Unexpected token '/'.."
The fix for me was to change how the partial was referenced
from this
<% include ./partials/messages %>
to this
<%- include ("./partials/messages") %>
Hope that helps someone
In login.ejs the include partial generated an error "SyntaxError: Unexpected token '/'.."
The fix for me was to change how the partial was referenced
from this
<% include ./partials/messages %>to this
<%- include ("./partials/messages") %>Hope that helps someone