From 6536e8baba7f665e43473a16a8c8b3e2784e070f Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Thu, 7 Dec 2023 09:46:35 +0800 Subject: [PATCH] fix: config.js default host value --- public/default/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/default/config.js b/public/default/config.js index 7a8fdd1e..217724bc 100644 --- a/public/default/config.js +++ b/public/default/config.js @@ -18,7 +18,7 @@ */ (function () { // host = ip:prot - const host = '192.168.2.166:3030'; + const host = '192.168.8.100:3030'; // Service Address 服务地址 sessionStorage.setItem(baseUrl, `http://${host}`);