bill 2 년 전
부모
커밋
bb39d67cdd
2개의 변경된 파일10개의 추가작업 그리고 6개의 파일을 삭제
  1. 0 4
      public/static/lib/potree/potree.js.map
  2. 10 2
      vue.config.js

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 4
public/static/lib/potree/potree.js.map


+ 10 - 2
vue.config.js

@@ -12,16 +12,24 @@ if (isDev) {
 const devServer = {
     disableHostCheck: true,
     headers: {
+        Connection: 'keep-alive',
         'Cache-Control': 'no-store'
     },
     proxy: {
         '/service': {
             target: 'https://test.4dkankan.com/',
-            changeOrigin: true
+            changeOrigin: true,
+            headers: {
+                Connection: 'keep-alive',
+            }
         },
         '/smart-site': {
             target: 'https://test.4dkankan.com/',//'http://192.168.0.152:8111', //
-            changeOrigin: true
+            changeOrigin: true,
+            headers: {
+                Connection: 'keep-alive',
+            }
+            
         }
     }
 }