//nuxt.config.ts
vite: {
server: {
proxy: {
'/api-proxy': {
target: 'http://localhost:4001',
changeOrigin: true,
rewrite: path => path.replace(/^\/api-proxy/, '')
}
}
}
}`
nitro: {
devProxy: {
'/api-proxy': {
target: 'http://localhost:4001',
changeOrigin: true
}
}
}`
routeRules: {
'/api-proxy/**': {
proxy: 'http://localhost:4001/**',
}
},`