charles1410
Help with proxy config in NUXT 3
thank you for respond master!
i finally solve the issue
here is the final solution:
on nuxt.config.ts:
nitro: {
devProxy: {
"/api/": "http://192.168.30.244:3000", // Proxy for API routes
"/auth/": "http://192.168.30.244:3000", // Proxy for authentication routes
},
},
on axios.ts config:
const apiClient = axios.create({
baseURL: '/api/', // URL Api
headers: {
'Content-Type': 'application/json',
},
withCredentials: true,
});
11 replies