mandant-crm/frontend/nuxt.config.ts

31 lines
548 B
TypeScript
Raw Normal View History

export default defineNuxtConfig({
ssr: false,
experimental: {
viteEnvironmentApi: true,
},
modules: ['@nuxtjs/tailwindcss'],
devServer: {
port: 3000,
host: '0.0.0.0',
},
nitro: {
devProxy: {
'/api': {
target: 'http://backend:8000',
changeOrigin: true,
prependPath: false,
},
'/sanctum': {
target: 'http://backend:8000',
changeOrigin: true,
prependPath: false,
},
},
},
runtimeConfig: {
public: {
apiBase: '/api',
},
},
})