| 12345678910111213141516171819202122 |
- import { defineConfig } from 'vite';
- import vue from '@vitejs/plugin-vue';
- export default defineConfig({
- plugins: [vue()],
- server: {
- host: '0.0.0.0',
- port: 5173,
- proxy: {
- '/api': {
- target: 'http://localhost:8080',
- changeOrigin: true,
- headers: { 'Connection': 'keep-alive' }
- },
- '/ws': {
- target: 'ws://localhost:8080',
- ws: true,
- changeOrigin: true
- }
- }
- }
- });
|