mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 22:00:09 +00:00
42 lines
793 B
JavaScript
42 lines
793 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',
|
|
hid: true,
|
|
},
|
|
{
|
|
rel: 'icon',
|
|
type: 'image/png',
|
|
href: '/img/favicon_32.png',
|
|
sizes: '32x32',
|
|
hid: true,
|
|
},
|
|
{
|
|
rel: 'icon',
|
|
type: 'image/png',
|
|
href: '/img/favicon_48.png',
|
|
sizes: '64x64',
|
|
hid: true,
|
|
},
|
|
{
|
|
rel: 'icon',
|
|
type: 'image/png',
|
|
href: '/img/favicon_192.png',
|
|
sizes: '192x192',
|
|
hid: true,
|
|
},
|
|
],
|
|
}
|