From 69a1b3bf45738f048361ee4ccb6bdc64fce35720 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 12 三月 2025 11:31:46 +0800
Subject: [PATCH] 更新

---
 screen/vite.config.js |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/screen/vite.config.js b/screen/vite.config.js
new file mode 100644
index 0000000..ff40646
--- /dev/null
+++ b/screen/vite.config.js
@@ -0,0 +1,36 @@
+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/, ""),
+      },
+    },
+  },
+})

--
Gitblit v1.9.3