82 lines
1.9 KiB
TypeScript
82 lines
1.9 KiB
TypeScript
export default defineAppConfig({
|
|
ui: {
|
|
colors: {
|
|
primary: 'primary',
|
|
neutral: 'neutral'
|
|
},
|
|
container: {
|
|
base: 'w-full h-full mx-auto px-2 sm:px-6 lg:px-8'
|
|
}
|
|
},
|
|
seo: {
|
|
siteName: 'Estel Docs'
|
|
},
|
|
header: {
|
|
title: 'Estel Docs',
|
|
to: '/',
|
|
logo: {
|
|
alt: '',
|
|
light: '',
|
|
dark: ''
|
|
},
|
|
search: true,
|
|
colorMode: true,
|
|
links: [{
|
|
'icon': 'simple-icons-github',
|
|
'to': 'https://github.com/estel-li/estel_docs',
|
|
'target': '_blank',
|
|
'aria-label': 'GitHub'
|
|
}]
|
|
},
|
|
footer: {
|
|
credits: `Copyright © ${new Date().getFullYear()} Estel. All rights reserved.`,
|
|
colorMode: false,
|
|
links: [{
|
|
'icon': 'vscode-icons:file-type-swift',
|
|
'to': 'https://www.xajiwei.com',
|
|
'target': '_blank',
|
|
'aria-label': '稷维科技'
|
|
}, {
|
|
'icon': 'vscode-icons:folder-type-github',
|
|
'to': 'https://git.jiwei.xin',
|
|
'target': '_blank',
|
|
'aria-label': 'gitea'
|
|
}, {
|
|
'icon': 'simple-icons-github',
|
|
'to': 'https://github.com/estel-li/estel_docs',
|
|
'target': '_blank',
|
|
'aria-label': 'Estel Docs GitHub'
|
|
}]
|
|
},
|
|
toc: {
|
|
title: '当前页',
|
|
bottom: {
|
|
title: 'Community',
|
|
edit: 'https://github.com/estel-li/estel_docs/edit/main/content',
|
|
links: [{
|
|
icon: 'lucide-star',
|
|
label: 'GitHub',
|
|
to: 'https://github.com/estel-li',
|
|
target: '_blank'
|
|
}, {
|
|
icon: 'lucide-home',
|
|
label: '稷维科技',
|
|
to: 'https://www.xajiwei.com',
|
|
target: '_blank'
|
|
}, {
|
|
icon: 'simple-icons-nuxtdotjs',
|
|
label: '个人博客',
|
|
to: 'https://lijue.me',
|
|
target: '_blank'
|
|
}]
|
|
}
|
|
},
|
|
github: {
|
|
url: 'https://github.com/estel-li/estel_docs',
|
|
owner: 'estel-li',
|
|
name: 'estel_docs',
|
|
branch: 'main',
|
|
rootDir: ''
|
|
}
|
|
})
|