This commit is contained in:
Haim Kortovich
2026-03-05 11:36:23 -05:00
commit 7e8025700b
19 changed files with 13483 additions and 0 deletions

16
nuxt.config.ts Normal file
View File

@@ -0,0 +1,16 @@
export default defineNuxtConfig({
compatibilityDate: '2026-02-25',
modules: ['nuxt-open-fetch', '@nuxt/ui'],
css: ['~/assets/css/main.css'],
ui: {
colorMode: false
},
openFetch: {
clients: {
customer: {
baseURL: 'http://localhost:4000/api/customers',
schema: 'http://localhost:4000/api/openapi'
}
}
}
})