diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index a38740829..f49a90ae0 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -105,11 +105,13 @@ def remove_vendors_js(): if vendors_js_path.exists(): vendors_js_path.unlink() + def remove_project_css(): project_css_path = Path("{{ cookiecutter.project_slug }}", "static", "css", "project.css") if project_css_path.exists(): project_css_path.unlink() + def remove_packagejson_file(): file_names = ["package.json"] for file_name in file_names: