Skip to content

Commit b68323c

Browse files
committed
docs: publish new docs build with docus v2
1 parent 54b13f1 commit b68323c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+6038
-23650
lines changed

docs/.env.example

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/.eslintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/.eslintrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/.gitignore

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,24 @@ logs
1717
.DS_Store
1818
.fleet
1919
.idea
20+
.eslintcache
2021

2122
# Local env files
2223
.env
2324
.env.*
2425
!.env.example
2526

26-
# VSC
27+
# Template
28+
template/pnpm-lock.yaml
29+
30+
# npm pack
31+
*.tgz
32+
33+
# Temp files
34+
.tmp
35+
.profile
36+
*.0x
37+
38+
#VSC
2739
.history
40+
.wrangler

docs/.npmrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
shamefully-hoist=true
2-
strict-peer-dependencies=false

docs/.nuxtrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/README.md

Lines changed: 0 additions & 119 deletions
This file was deleted.

docs/app.config.ts

Lines changed: 22 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,33 @@
11
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.',
175
},
186
header: {
197
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',
2311
},
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-
}],
4712
},
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',
5121
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',
6626
}, {
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',
7131
}],
7232
},
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-
},
9633
})

docs/app.vue

Lines changed: 0 additions & 51 deletions
This file was deleted.

docs/components/Footer.vue

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)