ditch useState and composables in favour of pinia store - add server rendered note detail page

This commit is contained in:
Michael Dausmann
2023-02-19 01:22:55 +11:00
parent bb9f4dfd1d
commit b3ee03b5c3
10 changed files with 325 additions and 539 deletions

View File

@@ -6,5 +6,8 @@ export default defineNuxtConfig({
typescript: {
shim: false
},
modules: ['@nuxtjs/supabase'],
modules: ['@nuxtjs/supabase', '@pinia/nuxt'],
imports: {
dirs: ['./stores'],
},
})