소스 검색

[frontend] Update app

Dima 1 년 전
부모
커밋
d4452c534e
3개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 0
      web/public/assets/index-a1413657.js
  2. 1 1
      web/public/index.html
  3. 5 1
      web/src/client/client.js

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
web/public/assets/index-a1413657.js


+ 1 - 1
web/public/index.html

@@ -6,7 +6,7 @@
     <title>Homethings</title>
     <link rel="icon" href="/assets/favicon-ef41fc5b.ico">
     
-  <script type="module" crossorigin src="/assets/index-7dfe232a.js"></script>
+  <script type="module" crossorigin src="/assets/index-a1413657.js"></script>
   <link rel="stylesheet" href="/assets/index-7639778d.css">
 </head>
 <body>

+ 5 - 1
web/src/client/client.js

@@ -56,7 +56,11 @@ export const routeUpdateNotification = "/api/v1/things/notifications/{thingId}"
 export const routeDeleteNotification = "/api/v1/things/notifications/{thingId}"
 
 export function getHost() {
-    return window.location.protocol + "//" + window.location.hostname + ":" + serverPort;
+    if (window.location.hostname === "localhost") {
+        return window.location.protocol + "//" + window.location.hostname + ":" + serverPort;
+    }
+
+    return window.location.protocol + "//" + window.location.hostname;
 }
 
 export function jsonRequest(method, url, data) {

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.