Files
chuanqi-qycq-web/vite.config.js

23 lines
456 B
JavaScript
Raw Normal View History

2025-09-30 17:43:06 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import * as path from "node:path";
2025-09-30 17:43:06 +08:00
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
server: {
proxy: {
'/api': {
target: 'http://localhost:3001',
changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
})