fix: added missing meta hid

This commit is contained in:
Corentin Thomasset 2021-03-15 17:38:50 +01:00
parent 991f9f8e1e
commit 93c11f0e44
No known key found for this signature in database
GPG key ID: DBD997E935996158
2 changed files with 6 additions and 3 deletions

View file

@ -16,11 +16,13 @@ export default class Tool extends Vue {
meta: [
{
name: 'description',
content: description
content: description,
hid: 'description'
},
{
name: 'keywords',
content: keywords
content: keywords,
hid: 'keywords'
}
]
}

View file

@ -14,7 +14,8 @@ export default {
meta: [
{charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
{hid: 'description', name: 'description', content: ''}
{hid: 'description', name: 'description', content: 'Aggregated set of useful tools that every developer may need once in a while.'},
{hid: 'keywords', name: 'keywords', content: ['tools', 'tool', 'it', 'developer', 'web', 'computing']}
],
link: [{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}]
},