From 119efc91fd3374131c31b8c5f8f5f7cb8f6731cf Mon Sep 17 00:00:00 2001
From: zuozhengqing <a13193816592@163.com>
Date: 星期五, 17 十一月 2023 09:34:59 +0800
Subject: [PATCH] 将出入库明细拆分为出库明细和入库明细

---
 vue.config.js |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/vue.config.js b/vue.config.js
index 524ff0f..1bfd2d9 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -14,12 +14,14 @@
   devServer: {
     proxy: {
       "/api-s": {
-        target: "http://192.168.20.119:8005",
+        // target: "http://192.168.20.119:8005", // 
+        target:"http://fai365.com:9083",  // 
         ws: true,
         changeOrigin: true
       },
       "/api-wms": {
-        target: "http://192.168.20.119:8001",
+        // target: "http://192.168.20.119:8005",
+        target:"http://fai365.com:9083",
         ws: true,
         changeOrigin: true
       }
@@ -30,13 +32,13 @@
     "crypto-js",
     "sockjs-client"
   ],
-  configureWebpack: (config) => {
+  configureWebpack: () => {
     const configNew = {}
     if (process.env.NODE_ENV === "production") {
       configNew.externals = externals
       configNew.plugins = []
     } else if (process.env.NODE_ENV === "development") {
-      console.log("development", config)
+      // console.log("development", config)
     }
     return configNew
   },

--
Gitblit v1.8.0