|
1 | 1 | export default defineAppConfig({ |
2 | | - ui: { |
3 | | - primary: 'green', |
4 | | - gray: 'slate', |
5 | | - |
6 | | - footer: { |
7 | | - bottom: { |
8 | | - left: 'text-sm text-gray-500 dark:text-gray-400', |
9 | | - wrapper: 'border-t border-gray-200 dark:border-gray-800', |
10 | | - }, |
11 | | - }, |
12 | | - |
13 | | - icons: { |
14 | | - dark: 'i-heroicons-moon', |
15 | | - light: 'i-heroicons-sun', |
16 | | - }, |
| 2 | + seo: { |
| 3 | + title: 'Nuxt Supabase', |
| 4 | + description: 'A supa simple wrapper around supabase-js to enable usage and integration within Nuxt.', |
17 | 5 | }, |
18 | 6 | header: { |
19 | 7 | logo: { |
20 | | - alt: 'logo nuxt supabase module', |
21 | | - light: '/logo-nuxt-supabase-light.png', |
22 | | - dark: '/logo-nuxt-supabase-dark.png', |
| 8 | + light: 'logo-nuxt-supabase-light.png', |
| 9 | + dark: 'logo-nuxt-supabase-dark.png', |
| 10 | + alt: 'Nuxt Supabase', |
23 | 11 | }, |
24 | | - search: true, |
25 | | - colorMode: true, |
26 | | - links: [{ |
27 | | - 'icon': 'i-simple-icons-x', |
28 | | - 'to': 'https://x.com/nuxt_js', |
29 | | - 'target': '_blank', |
30 | | - 'aria-label': 'Nuxt on X', |
31 | | - }, { |
32 | | - 'icon': 'i-simple-icons-github', |
33 | | - 'to': 'https://github.com/nuxt-modules/supabase', |
34 | | - 'target': '_blank', |
35 | | - 'aria-label': 'Module on GitHub', |
36 | | - }, { |
37 | | - 'icon': 'i-simple-icons-nuxtdotjs', |
38 | | - 'to': 'https://nuxt.com', |
39 | | - 'target': '_blank', |
40 | | - 'aria-label': 'Nuxt official website', |
41 | | - }, { |
42 | | - 'icon': 'i-simple-icons-supabase', |
43 | | - 'to': 'https://supabase.com', |
44 | | - 'target': '_blank', |
45 | | - 'aria-label': 'Supabase official website', |
46 | | - }], |
47 | 12 | }, |
48 | | - footer: { |
49 | | - credits: 'Made with Nuxt Studio', |
50 | | - colorMode: false, |
| 13 | + socials: { |
| 14 | + x: 'https://x.com/nuxt_js', |
| 15 | + discord: 'https://discord.com/invite/ps2h6QT', |
| 16 | + nuxt: 'https://nuxt.com', |
| 17 | + supabase: 'https://supabase.com/docs', |
| 18 | + }, |
| 19 | + toc: { |
| 20 | + edit: 'https://github.com/nuxt-modules/supabase/edit/main/docs/content', |
51 | 21 | links: [{ |
52 | | - 'icon': 'i-simple-icons-x', |
53 | | - 'to': 'https://x.com/nuxt_js', |
54 | | - 'target': '_blank', |
55 | | - 'aria-label': 'Nuxt on X', |
56 | | - }, { |
57 | | - 'icon': 'i-simple-icons-github', |
58 | | - 'to': 'https://github.com/nuxt-modules/supabase', |
59 | | - 'target': '_blank', |
60 | | - 'aria-label': 'Module on GitHub', |
61 | | - }, { |
62 | | - 'icon': 'i-simple-icons-nuxtdotjs', |
63 | | - 'to': 'https://nuxt.com', |
64 | | - 'target': '_blank', |
65 | | - 'aria-label': 'Nuxt official website', |
| 22 | + icon: 'i-lucide-book-open', |
| 23 | + label: 'Nuxt docs', |
| 24 | + to: 'https://nuxt.com/docs', |
| 25 | + target: '_blank', |
66 | 26 | }, { |
67 | | - 'icon': 'i-simple-icons-supabase', |
68 | | - 'to': 'https://supabase.com', |
69 | | - 'target': '_blank', |
70 | | - 'aria-label': 'Supabase official website', |
| 27 | + icon: 'i-simple-icons-supabase', |
| 28 | + label: 'Supabase docs', |
| 29 | + to: 'https://supabase.com/docs', |
| 30 | + target: '_blank', |
71 | 31 | }], |
72 | 32 | }, |
73 | | - toc: { |
74 | | - title: 'Table of Contents', |
75 | | - bottom: { |
76 | | - title: 'Community', |
77 | | - edit: 'https://github.com/nuxt-modules/supabase/edit/main/docs/content', |
78 | | - links: [{ |
79 | | - icon: 'i-heroicons-star', |
80 | | - label: 'Star on GitHub', |
81 | | - to: 'https://github.com/nuxt-modules/supabase', |
82 | | - target: '_blank', |
83 | | - }, { |
84 | | - icon: 'i-simple-icons-nuxtdotjs', |
85 | | - label: 'Nuxt docs', |
86 | | - to: 'https://nuxt.com', |
87 | | - target: '_blank', |
88 | | - }, { |
89 | | - icon: 'i-simple-icons-supabase', |
90 | | - label: 'Supabase docs', |
91 | | - to: 'https://supabase.com', |
92 | | - target: '_blank', |
93 | | - }], |
94 | | - }, |
95 | | - }, |
96 | 33 | }) |
0 commit comments