mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-10-31 17:11:13 +01:00
99a0c72d49
Since mkdocs v1.4, the hooks are a native feature
7 lines
169 B
Python
7 lines
169 B
Python
import os
|
|
import shutil
|
|
|
|
|
|
def on_post_build(config, **kwargs):
|
|
site_dir = config["site_dir"]
|
|
shutil.copytree("docs/static/fonts", os.path.join(site_dir, "get"))
|