diff --git a/web-frontend/config/nuxt.config.base.js b/web-frontend/config/nuxt.config.base.js index 775a677ce..4cc4d6c12 100644 --- a/web-frontend/config/nuxt.config.base.js +++ b/web-frontend/config/nuxt.config.base.js @@ -1,14 +1,36 @@ export default { mode: 'universal', - - /** - * Headers of the page - */ head: { title: 'Baserow', meta: [ { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' } + ], + link: [ + { + rel: 'icon', + type: 'image/png', + href: '/img/favicon_16.png', + sizes: '16x16' + }, + { + rel: 'icon', + type: 'image/png', + href: '/img/favicon_32.png', + sizes: '32x32' + }, + { + rel: 'icon', + type: 'image/png', + href: '/img/favicon_48.png', + sizes: '64x64' + }, + { + rel: 'icon', + type: 'image/png', + href: '/img/favicon_192.png', + sizes: '192x192' + } ] },