Files
policy-ui/nuxt.config.ts

29 lines
734 B
TypeScript

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/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'
},
}
}
})