Skip to content

Commit

Permalink
#282 updated build process according to new vue-cli structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bugy committed Apr 16, 2020
1 parent 682e9b7 commit 83614a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/tool_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 83614a7

Please sign in to comment.