export default defineNuxtConfig({
vite: {
server: {
proxy: {
'/user': {
target: 'http://localhost:8081',
changeOrigin: true,
prependPath: true,
},
},
}
},
// nitro: {
// devProxy: {
// '/portal': {
// target: 'http://localhost:8081',
// changeOrigin: true,
// // prependPath: true,
// },
// '/user': {
// target: 'http://localhost:8081',
// changeOrigin: true,
// // prependPath: true,
// },
// '/live2d': {
// target: 'http://static.mofeng759.top',
// changeOrigin: true,
// // prependPath: true,
// }
// }
// },
})
NUXT3+ts 解决跨域配置
于 2023-08-29 21:26:04 首次发布