import { fileURLToPath, URL } from 'node:url' import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import VueDevTools from 'vite-plugin-vue-devtools' //配置参数 export default defineConfig({ plugins: [ vue(), VueDevTools(), ], base: './', resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, css: { }, build: { outDir: 'screen' }, server: { proxy: { "/gateway_interface": { // target: "http://192.168.0.104:10010", target: "http://10.50.250.253:8088/gateway_interface", // target: "https://atwl.ahzyssl.com/zhyq_interface", changeOrigin: true, rewrite: (path) => path.replace(/^\/gateway_interface/, ""), }, }, }, })