1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-24 21:14:05 +00:00
bramw_baserow/web-frontend/modules/core/head.js
2020-03-31 14:15:27 +00:00

34 lines
662 B
JavaScript

export default {
title: 'Baserow',
titleTemplate: '%s // 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',
},
],
}