fix: add title before other meta for better SEO (#3362)

This commit is contained in:
Michael 2018-05-23 09:47:47 +03:00 committed by Pooya Parsa
parent aaf44cf20a
commit 66030467d1
2 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ export default class MetaRenderer {
// HEAD tags
meta.HEAD =
m.meta.text() +
m.title.text() +
m.meta.text() +
m.link.text() +
m.style.text() +
m.script.text() +

View File

@ -339,8 +339,8 @@ export default class Renderer {
}
const m = context.meta.inject()
let HEAD =
m.meta.text() +
m.title.text() +
m.meta.text() +
m.link.text() +
m.style.text() +
m.script.text() +