import type { builtinColors, builtinRadiuses } from 'unocss-preset-shadcn' export default defineAppConfig({ shadcn: { color: 'zinc', radius: 0.5, }, pro: { variables: { header: { height: 3, }, }, }, }) declare module 'nuxt/schema' { interface CustomAppConfig { shadcn: { color?: (typeof builtinColors)[number] radius?: (typeof builtinRadiuses)[number] } pro: { variables: { header: { height: number } } } } }