mirror of
https://github.com/ArthurDanjou/trpc-nuxt.git
synced 2026-01-14 12:14:40 +01:00
32 lines
703 B
TypeScript
32 lines
703 B
TypeScript
export default defineAppConfig({
|
|
docus: {
|
|
title: 'tRPC Nuxt',
|
|
description: 'End-to-end typesafe APIs in Nuxt applications.',
|
|
image: 'https://og-image.vercel.app/tRPC-Nuxt',
|
|
alt: 'tRPC-Nuxt cover',
|
|
url: 'https://trpc-nuxt.vercel.app',
|
|
debug: false,
|
|
socials: {
|
|
github: 'wobsoriano/trpc-nuxt'
|
|
},
|
|
aside: {
|
|
level: 1
|
|
},
|
|
footer: {
|
|
credits: {
|
|
icon: 'IconDocus',
|
|
text: 'Powered by Docus',
|
|
href: 'https://docus.com',
|
|
},
|
|
iconLinks: [
|
|
{
|
|
label: 'NuxtJS',
|
|
href: 'https://nuxt.com',
|
|
// @ts-expect-error: IDK nuxt
|
|
component: 'IconNuxtLabs'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|