-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.config.ts
35 lines (34 loc) · 886 Bytes
/
app.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export default({
title: 'HyperOS.fans',
ssr: true,
target: "static",
components: true,
loading: {
color: "#2655ff",
height: "5px",
},
app: {
head: {
charset: 'utf-8',
meta: [
{ name: "baidu-site-verification", content: "codeva-AXUJixvVZA" },
{ name: 'msvalidate.01', content: 'D0A12F85D732BE57318CA28F52500432' }
],
link: [
{
rel: "stylesheet",
href: "https://at.alicdn.com/t/c/font_2478867_iq2uuq05ql.css",
},
{
rel: 'stylesheet',
href: 'https://cdn-font.hyperos.mi.com/font/css?family=MiSans:100,200,300,400,500,600:Chinese_Simplify,Latin&display=swap'
},
{
rel: "apple-touch-icon-precomposed",
sizes: "150x150",
href: "/apple-touch-icon.png"
}
]
}
}
})