diff --git a/src/plugins/main.py b/src/plugins/main.py
index 5bc92b5..adab8eb 100644
--- a/src/plugins/main.py
+++ b/src/plugins/main.py
@@ -51,16 +51,6 @@ def inject_repos(md_file, md_content):
flags=re.DOTALL,
)
-@hook("on_file_changed")
-def on_file_changed_hook(changed_path, config):
- if changed_path.startswith(config.tree.static) and api.mode == "release":
- subprocess.run(["rsync", "-a", api.config.tree.static, os.path.join(os.path.dirname(api.config.tree.release_dest),"static") ])
-
-@hook("on_end")
-def sync_static():
- if api.mode == "release":
- subprocess.run(["rsync", "-a", api.config.tree.static, os.path.join(os.path.dirname(api.config.tree.release_dest),"static") ])
-
@hook("on_build_end")
def build_pages(_):
global repos