2022-11-28 14:10:55 +08:00
|
|
|
import type { HeadConfig } from '@vuepress/core'
|
2022-11-02 21:01:32 +08:00
|
|
|
|
2022-11-02 21:49:54 +08:00
|
|
|
export const headConfig: HeadConfig[] = [
|
|
|
|
|
[
|
|
|
|
|
'link',
|
|
|
|
|
{
|
|
|
|
|
rel: 'icon',
|
|
|
|
|
type: 'image/png',
|
|
|
|
|
sizes: '16x16',
|
2022-11-04 10:40:28 +08:00
|
|
|
href: `/icons/favicon-16x16.png`,
|
2022-11-02 21:49:54 +08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'link',
|
|
|
|
|
{
|
|
|
|
|
rel: 'icon',
|
|
|
|
|
type: 'image/png',
|
|
|
|
|
sizes: '32x32',
|
2022-11-04 10:40:28 +08:00
|
|
|
href: `/icons/favicon-32x32.png`,
|
2022-11-02 21:49:54 +08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
['link', { rel: 'manifest', href: '/manifest.webmanifest' }],
|
|
|
|
|
['meta', { name: 'application-name', content: 'MCC Doc' }],
|
|
|
|
|
['meta', { name: 'apple-mobile-web-app-title', content: 'MCC Doc' }],
|
|
|
|
|
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }],
|
|
|
|
|
[
|
|
|
|
|
'link',
|
2022-11-04 10:40:28 +08:00
|
|
|
{ rel: 'apple-touch-icon', href: `/icons/apple-touch-icon.png` },
|
2022-11-02 21:49:54 +08:00
|
|
|
],
|
|
|
|
|
['meta', { name: 'msapplication-TileColor', content: '#3eaf7c' }],
|
|
|
|
|
['meta', { name: 'theme-color', content: '#3eaf7c' }],
|
2022-11-02 21:01:32 +08:00
|
|
|
]
|