mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-14 17:18:33 +00:00
added favicons to the base settings
This commit is contained in:
parent
45ca725bf1
commit
19eda753db
1 changed files with 26 additions and 4 deletions
|
@ -1,14 +1,36 @@
|
||||||
export default {
|
export default {
|
||||||
mode: 'universal',
|
mode: 'universal',
|
||||||
|
|
||||||
/**
|
|
||||||
* Headers of the page
|
|
||||||
*/
|
|
||||||
head: {
|
head: {
|
||||||
title: 'Baserow',
|
title: 'Baserow',
|
||||||
meta: [
|
meta: [
|
||||||
{ charset: 'utf-8' },
|
{ charset: 'utf-8' },
|
||||||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
{ 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'
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue