Hi I tried everything but this error always comes up
SyntaxError: Unexpected token '.' in `<% include ../partials/header %>`
>Solution :
I think that the dashes were missed: <%- and -%>
Specifically <% include /included %> style includes were removed and must be changed to <%- include(‘/included’) -%>
Please refer to this issue
