vite.config.js 进行跨域配置
发表于:2023-12-27 15:12:06浏览:76次
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
server: {
proxy: {
'/api': {
target: 'http://jswork.maoyingkeji.com',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}
},
})
栏目分类全部>