diff options
Diffstat (limited to 'nuxt.config.js')
| -rw-r--r-- | nuxt.config.js | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/nuxt.config.js b/nuxt.config.js index 2b4a6a4..7f24d0d 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -6,8 +6,16 @@ module.exports = { titleTemplate: '%s - Andrew Lee', meta: [ { charset: 'utf-8' }, - { name: 'viewport', content: 'width=device-width, initial-scale=1' } - ] + { name: 'viewport', content: 'width=device-width, initial-scale=1' }, + { hid: 'description', name: 'description', content: 'Andrew\'s Personal Website' } + ], + link: [ + { + rel: 'icon', + type: 'image/x-icon', + href: 'favicon.ico', + } + ] }, /* ** Customize the progress-bar color @@ -54,6 +62,7 @@ module.exports = { } } }, + /* ** Build configuration */ |
