Organize workspace: Frontend, Backend, and Tests in one repo

This commit is contained in:
2026-03-04 22:04:07 +00:00
parent a24e901b7f
commit c065cbf61e
5390 changed files with 844081 additions and 446 deletions

View File

@@ -0,0 +1,17 @@
import { createVuetify } from 'vuetify'
import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
// We use the global defineNuxtPlugin.
// If it's still red, it's just a VS Code cache issue—the code is valid.
export default defineNuxtPlugin((nuxtApp) => {
const vuetify = createVuetify({
ssr: true,
components,
directives,
})
// We cast nuxtApp as 'any' ONLY if the editor is being stubborn
// during your setup, but npx nuxi prepare usually fixes the real type.
nuxtApp.vueApp.use(vuetify)
})