diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-04-30 15:01:40 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-04-30 15:01:40 -0400 |
| commit | 848f1ca425e03cdcf7503ab51d80711bbf28c0f2 (patch) | |
| tree | c008b954d10a7318933138c8ea45804eb33ba825 /nuxt.config.js | |
| parent | 37522c3ce749f6582c47e892c935297220e926dc (diff) | |
| download | personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.gz personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.tar.bz2 personal-website-848f1ca425e03cdcf7503ab51d80711bbf28c0f2.zip | |
Major changes in home page, added stuff on other pages and favicon
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 */ |
