mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
8 lines
360 B
TypeScript
8 lines
360 B
TypeScript
import type { HeadConfig } from '@vuepress/core'
|
|
|
|
export const head: HeadConfig[] = [
|
|
["meta", { name: "theme-color", content: "#3eaf7c" }],
|
|
["meta", { name: "apple-mobile-web-app-capable", content: "yes" }],
|
|
["meta", { name: "apple-mobile-web-app-status-bar-style", content: "black" }],
|
|
["link", { rel: "icon", href: "../../favicon.ico" }],
|
|
]
|