-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
79 lines (73 loc) · 1.69 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* @Author: dushuai
* @Date: 2024-01-22 11:26:44
* @LastEditors: dushuai
* @LastEditTime: 2024-01-25 10:08:46
* @description: app.config
*/
import { aside } from './config'
export default defineAppConfig({
docus: {
// titleTemplate: "dshuais' blog",
title: "dshuais",
description: 'A Vite+TypeScript based scaffolding for quickly building a Vue 3 component library development environment.',
image: '/logo.png',
url: 'https://www.dshuais.com/',
socials: {
// twitter: 'nuxtstudio',
github: 'dshuais'
},
github: {
dir: 'main/content',
branch: 'main',
repo: 'homepage',
owner: 'dshuais',
edit: true,
},
aside,
main: {
padded: false,
fluid: false,
},
header: {
logo: true,
showLinkIcon: true,
navigation: true,
fluid: false,
exclude: []
},
footer: {
fluid: false,
credits: {
icon: 'IconDocus',
text: 'Powered by Docus',
href: 'https://docus.dev'
},
textLinks: [
// {
// text: 'Made with ❤️ by dshuais',
// href: 'https://github.com/dshuais/',
// },
{
text: 'Copyright© 2022-PRESENT DuShuai',
href: 'https://www.dshuais.com/'
},
{
text: '鄂ICP备2022011303号-1',
href: 'https://beian.miit.gov.cn/',
target: '_blank'
}
],
iconLinks: [
{
href: 'https://nuxt.com',
icon: 'simple-icons:nuxtdotjs',
},
// {
// icon: 'mdi:npm-variant',
// href: 'https://www.npmjs.com/package/create-keepdesign',
// },
],
},
}
})