export default defineNuxtConfig({ ssr: false, 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', }, }, })