6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
import { db } from '@/lib/db'
|
|
// Assuming dexie-db.ts is correctly set up and exported `db`
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
nuxtApp.provide('db', db)
|
|
})
|