feat: add PocketBase integration for backend connectivity

- Added pocketbase-nuxt module to enable database and authentication features
- Configured PocketBase to connect to local development server at port 8090
This commit is contained in:
Esa Kataja
2025-11-16 15:51:03 +02:00
parent 4707a77a7d
commit 24a6193a40
3 changed files with 16 additions and 2 deletions
+6 -2
View File
@@ -10,6 +10,10 @@ export default defineNuxtConfig({
'@nuxt/fonts',
'@nuxt/image',
'@nuxt/icon',
'@nuxt/scripts'
]
'@nuxt/scripts',
'pocketbase-nuxt'
],
pocketbase: {
url: 'http://localhost:8090'
},
})