|
| 1 | +export default defineAppConfig({ |
| 2 | + ui: { |
| 3 | + colors: { |
| 4 | + primary: 'green', |
| 5 | + neutral: 'slate' |
| 6 | + } |
| 7 | + }, |
| 8 | + uiPro: { |
| 9 | + footer: { |
| 10 | + slots: { |
| 11 | + root: 'border-t border-(--ui-border)', |
| 12 | + left: 'text-sm text-(--ui-text-muted)' |
| 13 | + } |
| 14 | + } |
| 15 | + }, |
| 16 | + seo: { |
| 17 | + siteName: 'Nuxt Codemirror' |
| 18 | + }, |
| 19 | + header: { |
| 20 | + title: 'Nuxt Codemirror', |
| 21 | + to: '/', |
| 22 | + logo: { |
| 23 | + alt: '', |
| 24 | + light: '', |
| 25 | + dark: '' |
| 26 | + }, |
| 27 | + search: true, |
| 28 | + colorMode: true, |
| 29 | + links: [{ |
| 30 | + 'icon': 'i-simple-icons-github', |
| 31 | + 'to': 'https://github.com/ThimoDEV/nuxt-codemirror', |
| 32 | + 'target': '_blank', |
| 33 | + 'aria-label': 'GitHub' |
| 34 | + }] |
| 35 | + }, |
| 36 | + footer: { |
| 37 | + credits: `Copyright © ${new Date().getFullYear()}`, |
| 38 | + colorMode: false, |
| 39 | + links: [{ |
| 40 | + 'icon': 'i-simple-icons-nuxtdotjs', |
| 41 | + 'to': 'https://nuxt.com', |
| 42 | + 'target': '_blank', |
| 43 | + 'aria-label': 'Nuxt Website' |
| 44 | + }, { |
| 45 | + 'icon': 'i-simple-icons-discord', |
| 46 | + 'to': 'https://discord.com/invite/ps2h6QT', |
| 47 | + 'target': '_blank', |
| 48 | + 'aria-label': 'Nuxt UI on Discord' |
| 49 | + }, { |
| 50 | + 'icon': 'i-simple-icons-x', |
| 51 | + 'to': 'https://x.com/nuxt_js', |
| 52 | + 'target': '_blank', |
| 53 | + 'aria-label': 'Nuxt on X' |
| 54 | + }, { |
| 55 | + 'icon': 'i-simple-icons-github', |
| 56 | + 'to': 'https://github.com/ThimoDEV/nuxt-codemirror', |
| 57 | + 'target': '_blank', |
| 58 | + 'aria-label': 'Nuxt Codemirror Module on GitHub' |
| 59 | + }] |
| 60 | + }, |
| 61 | + toc: { |
| 62 | + title: 'Table of Contents', |
| 63 | + bottom: { |
| 64 | + title: 'Community', |
| 65 | + edit: 'https://github.com/nuxt-ui-pro/docs/edit/main/content', |
| 66 | + links: [{ |
| 67 | + icon: 'i-lucide-star', |
| 68 | + label: 'Star on GitHub', |
| 69 | + to: 'https://github.com/ThimoDEV/nuxt-codemirror', |
| 70 | + target: '_blank' |
| 71 | + }, { |
| 72 | + icon: 'i-lucide-book-open', |
| 73 | + label: 'Nuxt UI Pro docs', |
| 74 | + to: 'https://ui.nuxt.com/getting-started/installation/pro/nuxt', |
| 75 | + target: '_blank' |
| 76 | + }, { |
| 77 | + icon: 'i-simple-icons-nuxtdotjs', |
| 78 | + label: 'Purchase a license', |
| 79 | + to: 'https://ui.nuxt.com/pro/purchase', |
| 80 | + target: '_blank' |
| 81 | + }] |
| 82 | + } |
| 83 | + } |
| 84 | +}) |
0 commit comments