1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-23 12:50:16 +00:00
bramw_baserow/web-frontend/modules/core/head.js

38 lines
726 B
JavaScript

export default {
title: 'Baserow',
titleTemplate: '%s // Baserow',
meta: [
{ charset: 'utf-8' },
{
name: 'viewport',
content:
'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no',
},
],
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',
},
],
}