| 12345678910111213141516171819202122 |
- import { defineConfig } from 'vite'
- import react from '@vitejs/plugin-react'
- import path from 'path'
- // https://vitejs.dev/config/
- export default defineConfig({
- plugins: [react()],
- resolve: {
- alias: {
- '@': path.resolve(__dirname, './src'),
- },
- },
- server: {
- proxy: {
- '/api': {
- target: 'http://localhost:8083', // 后端地址
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/api/, ''), // 可选:去掉前缀
- },
- },
- },
- })
|