add customer and providers

This commit is contained in:
2026-03-17 14:50:02 -05:00
parent 7e8025700b
commit 5164590bc9
16 changed files with 2958 additions and 301 deletions

View File

@@ -8,9 +8,21 @@ export default defineNuxtConfig({
openFetch: {
clients: {
customer: {
baseURL: 'http://localhost:4000/api/customers',
baseURL: 'http://localhost:4000/api/v1',
schema: 'http://localhost:4000/api/openapi'
}
},
policy: {
baseURL: 'http://localhost:4001/api/v1',
schema: 'http://localhost:4001/api/openapi'
},
providers: {
baseURL: 'http://localhost:4002/api/v1',
schema: 'http://localhost:4002/api/openapi'
},
tasks: {
baseURL: 'http://localhost:8080/api/v1',
schema: 'http://localhost:8080/openapi3.json'
},
}
}
})