42 lines
878 B
TypeScript
42 lines
878 B
TypeScript
export default defineAppConfig({
|
|
socials: {
|
|
x: 'https://x.com/nuxt_js',
|
|
discord: 'https://discord.com/invite/ps2h6QT',
|
|
nuxt: 'https://nuxt.com',
|
|
},
|
|
github: {
|
|
rootDir: 'docs',
|
|
},
|
|
toc: {
|
|
bottom: {
|
|
title: 'Community',
|
|
links: [{
|
|
icon: 'i-lucide-book-open',
|
|
label: 'Nuxt UI Pro docs',
|
|
to: 'https://ui.nuxt.com/getting-started/installation/pro/nuxt',
|
|
target: '_blank',
|
|
},
|
|
{
|
|
icon: 'i-lucide-credit-card',
|
|
label: 'Purchase a license',
|
|
to: 'https://ui.nuxt.com/pro/purchase',
|
|
target: '_blank',
|
|
}],
|
|
},
|
|
},
|
|
uiPro: {
|
|
pageHero: {
|
|
slots: {
|
|
title: 'font-semibold sm:text-6xl',
|
|
container: '!pb-0',
|
|
},
|
|
},
|
|
pageCard: {
|
|
slots: {
|
|
container: 'lg:flex min-w-0',
|
|
wrapper: 'flex-none',
|
|
},
|
|
},
|
|
},
|
|
})
|