17 lines
358 B
TypeScript
17 lines
358 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/customers',
|
|
schema: 'http://localhost:4000/api/openapi'
|
|
}
|
|
}
|
|
}
|
|
})
|