跨域代理
# vite.config.ts
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
export default defineConfig({
plugins: [vue(), vueJsx()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server:{
proxy: {
'^/api': {
target: 'http://localhost:5173/',
changeOrigin: true,
rewrite: (path) => path.replace(/^/api/, '')
},
'^/bpi': {
target: 'https://www.maoyan.com/',
changeOrigin: true,
rewrite: (path) => path.replace(/^/bpi/, '')
}
}
}
})