From b67f46b4a768b4cd72d4e463c5dffefe977ddeb7 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Mon, 02 Dec 2024 22:04:27 +0800
Subject: [PATCH] 应急空间及全局图层去除废水处理站、污水池

---
 vite.config.js |   28 ++++++++++++++++++++++++++--
 1 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/vite.config.js b/vite.config.js
index 774b4b6..a2a675a 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -2,7 +2,7 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2024-10-25 10:56:27
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-11-12 14:02:19
+ * @LastEditTime: 2024-12-02 19:53:54
  * @FilePath: \bigScreen\vite.config.js
  * @Description: 
  * 
@@ -16,6 +16,8 @@
 import AutoImport from 'unplugin-auto-import/vite'
 import basicSsl from '@vitejs/plugin-basic-ssl'
 import { fa } from 'element-plus/es/locales.mjs'
+import viteCompression from 'vite-plugin-compression'
+// import vueDevTools from 'vite-plugin-vue-devtools'
 
 export default ({ mode, command }) => {
   const env = loadEnv(mode, process.cwd())
@@ -53,7 +55,15 @@
       basicSsl(),
       AutoImport({
         imports: ["vue", "vue-router"], // 自动导入vue和vue-router相关函数
-      })
+      }),
+      viteCompression({
+        filter: /\.(js|css|json|txt|ico|svg)(\?.*)?$/i, // 需要压缩的文件
+        threshold: 1024, // 文件容量大于这个值进行压缩
+        algorithm: 'gzip', // 压缩方式
+        ext: 'gz', // 后缀名
+        deleteOriginFile: false, // 压缩后是否删除压缩源文件
+      }),
+      // vueDevTools()
     ],
 
     css: {
@@ -85,6 +95,13 @@
       //   overlay:false
       // },
       proxy: {
+        '/zhyq3Dtile': {
+          // target: 'http://localhost',
+          target: 'https://wrj.shuixiongit.com/zhyq3Dtile',
+          changeOrigin: true,
+          rewrite: path => path.replace(/^\/zhyq3Dtile/, ''),
+        },
+
         '/panorama': {
           // target: 'http://localhost',
           target: 'http://vr.jxpskj.com:180',
@@ -92,6 +109,13 @@
           rewrite: path => path.replace(/^\/panorama/, ''),
         },
 
+        '/zhyq/newMx': {
+          // target: 'http://localhost',
+          target: 'https://wrj.shuixiongit.com/zhyq/newMx',
+          changeOrigin: true,
+          rewrite: path => path.replace(/^\/zhyq\/newMx/, ''),
+        },
+
         '/zhyq/mx': {
           // target: 'http://localhost',
           target: 'https://wrj.shuixiongit.com/zhyq/mx',

--
Gitblit v1.9.3