diff --git a/src/utils/tool_utils.py b/src/utils/tool_utils.py index 01404b95..27f59077 100644 --- a/src/utils/tool_utils.py +++ b/src/utils/tool_utils.py @@ -14,7 +14,7 @@ def validate_web_build_exists(project_path): if not os.path.exists(web_folder): raise InvalidWebBuildException(web_folder + ' does not exist. \n' + how_to_fix_build_message) - required_files = ['index.js', 'index.html', 'index-deps.css', 'admin.html', 'admin.js'] + required_files = ['index.html', 'admin.html', 'login.html', 'js', 'css', 'img'] for file in required_files: file_path = os.path.join(web_folder, file)