소스 검색

Gui: Use the correct webapp Path (#914)

Dinh Long Nguyen 1 년 전
부모
커밋
750afd0337
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      taipy/gui/setup.py

+ 1 - 1
taipy/gui/setup.py

@@ -56,7 +56,7 @@ extras_require = {
 
 
 def _build_webapp():
-    already_exists = Path("./webapp/index.html").exists()
+    already_exists = Path("./taipy/gui/webapp/index.html").exists()
     if not already_exists:
         os.system("cd ../../frontend/taipy-gui/dom && npm ci")
         os.system("cd ../../frontend/taipy-gui && npm ci --omit=optional && npm run build")