mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 00:06:15 -04:00
fix: added missing meta hid
This commit is contained in:
parent
991f9f8e1e
commit
93c11f0e44
2 changed files with 6 additions and 3 deletions
|
@ -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'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -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'}]
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue