mirror of
https://github.com/JessSystemV/zProtect.git
synced 2025-01-07 05:35:38 +00:00
27 lines
654 B
TypeScript
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/' }],
|
||
|
]
|