import { fileURLToPath, URL } from 'node:url' import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import vueDevTools from 'vite-plugin-vue-devtools' // https://vite.dev/config/ export default defineConfig({ plugins: [vue(), vueDevTools()], resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, server: { proxy: { '/fileManager': { target: 'http://192.168.2.24:8803', ws: true, changeOrigin: true, rewrite: (path) => path.replace(/^\/api/, ''), }, '/api': { target: 'http://192.168.2.107:8099', changeOrigin: true, // rewrite: (path) => path.replace(/^\/api/, ''), }, }, }, })