diff --git a/components/Tool.vue b/components/Tool.vue index c48974df..07e8e345 100644 --- a/components/Tool.vue +++ b/components/Tool.vue @@ -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' } ] } diff --git a/nuxt.config.js b/nuxt.config.js index 68c4461c..458b0b39 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -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'}] },