Files
backmanagerweb/vite.config.js
T

17 lines
296 B
JavaScript
Raw Normal View History

2026-06-08 01:26:29 +08:00
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
2026-06-25 21:49:55 +08:00
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true
}
}
}
2026-06-08 01:26:29 +08:00
})