From 750afd0337dad810e7ce3c87202dc813129be0da Mon Sep 17 00:00:00 2001 From: Dinh Long Nguyen Date: Fri, 1 Mar 2024 21:36:26 +0700 Subject: [PATCH] Gui: Use the correct webapp Path (#914) --- taipy/gui/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taipy/gui/setup.py b/taipy/gui/setup.py index 033605a5c3..a36dc4c050 100644 --- a/taipy/gui/setup.py +++ b/taipy/gui/setup.py @@ -56,7 +56,7 @@ def get_requirements(): 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")