zProtect/docs/.vuepress/config/head.ts
2023-01-29 09:27:22 -03:00

27 lines
654 B
TypeScript

import type { HeadConfig } from '@vuepress/core';
export const head: HeadConfig[] = [
[
'link',
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: `/favicon-16.png`,
},
],
[
'link',
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: `/favicon-32.png`,
},
],
['meta', { name: 'theme-color', content: '#936edb' }],
['meta', { name: 'og:title', content: 'zProtect Documentation' }],
['meta', { name: 'og:type', content: 'website' }],
['meta', { name: 'og:image', content: '/og.png' }],
['meta', { name: 'og:url', content: 'https://docs.zprotect.dev/' }],
]