Closed Ouadie closed 7 years ago
This is not a dublicate. Head.title for title tag, head.meta for meta tags.
@anorudes ${head ? head.title.toString() : ''}
is called twice:
${head ? head.title.toString() : ''}
${head ? head.meta.toString() : ''}
${bundleCSS}
<link rel="shortcut icon" href="/static/images/favicon.png" type="image/x-icon">
${head ? head.title.toString() : ''}
Oh, you are right!
@anorudes Is there any specific reason for setting
${head ? head.title.toString() : ''}
twice ?