您的当前位置:首页>全部文章>文章详情

vite.config.js 进行跨域配置

发表于:2023-12-27 15:12:06浏览:76次TAG: #Vue
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/, '')
      }
    }
 },


})