92 lines
2.0 KiB
TypeScript
92 lines
2.0 KiB
TypeScript
export default defineAppConfig({
|
|
ui: {
|
|
colors: {
|
|
primary: 'blue',
|
|
neutral: 'zinc'
|
|
}
|
|
},
|
|
uiPro: {
|
|
footer: {
|
|
slots: {
|
|
root: 'border-t border-default',
|
|
left: 'text-sm text-muted'
|
|
}
|
|
}
|
|
},
|
|
seo: {
|
|
siteName: 'Nuxt Docs Template'
|
|
},
|
|
header: {
|
|
title: 'Estel Docs',
|
|
to: '/',
|
|
logo: {
|
|
alt: '',
|
|
light: '',
|
|
dark: ''
|
|
},
|
|
search: true,
|
|
colorMode: true,
|
|
links: [{
|
|
'icon': 'i-simple-icons-github',
|
|
'to': 'https://github.com/nuxt-ui-pro/docs',
|
|
'target': '_blank',
|
|
'aria-label': 'GitHub'
|
|
}]
|
|
},
|
|
footer: {
|
|
credits: `Copyright © ${new Date().getFullYear()} Estel. All rights reserved.`,
|
|
colorMode: false,
|
|
links: [{
|
|
'icon': 'i-simple-icons-nuxtdotjs',
|
|
'to': 'https://nuxt.com',
|
|
'target': '_blank',
|
|
'aria-label': 'Nuxt Website'
|
|
}, {
|
|
'icon': 'i-simple-icons-discord',
|
|
'to': 'https://discord.com/invite/ps2h6QT',
|
|
'target': '_blank',
|
|
'aria-label': 'Nuxt UI on Discord'
|
|
}, {
|
|
'icon': 'i-simple-icons-x',
|
|
'to': 'https://x.com/nuxt_js',
|
|
'target': '_blank',
|
|
'aria-label': 'Nuxt on X'
|
|
}, {
|
|
'icon': 'i-simple-icons-github',
|
|
'to': 'https://github.com/nuxt/ui',
|
|
'target': '_blank',
|
|
'aria-label': 'Nuxt UI on GitHub'
|
|
}]
|
|
},
|
|
toc: {
|
|
title: '当前页',
|
|
bottom: {
|
|
title: 'Community',
|
|
edit: 'https://github.com/nuxt-ui-pro/docs/edit/main/content',
|
|
links: [{
|
|
icon: 'i-lucide-star',
|
|
label: 'GitHub',
|
|
to: 'https://github.com/estel-li',
|
|
target: '_blank'
|
|
}, {
|
|
icon: 'i-lucide-home',
|
|
label: '稷维科技',
|
|
to: 'https://www.xajiwei.com',
|
|
target: '_blank'
|
|
}, {
|
|
icon: 'i-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: ''
|
|
}
|
|
})
|