diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-02 17:37:09 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-02 17:37:09 -0300 | 
| commit | 4bc8f1f9ec54dcaf23af1fd5172f872e7351d1ed (patch) | |
| tree | 8577e60bacec6491672c6b681cb0f1d4d81385b2 | |
| parent | 16f5d9643ae3b9b4aba73cadc298b663b13ac030 (diff) | |
| download | hydra-4bc8f1f9ec54dcaf23af1fd5172f872e7351d1ed.tar.gz hydra-4bc8f1f9ec54dcaf23af1fd5172f872e7351d1ed.tar.bz2  | |
Fix: docs: improved config withouth fetching external fonts
| -rw-r--r-- | mkdocs.yml | 16 | 
1 files changed, 16 insertions, 0 deletions
@@ -1,10 +1,26 @@ +# Site parameters  site_name: Hydra Suite +# Theme configuration +# See https://www.mkdocs.org/user-guide/choosing-your-theme/ +#     https://squidfunk.github.io/mkdocs-material/  theme: +  # Theme name    name: material +  # Logo    logo: assets/logo.png +  # Do not use external fonts +  # Useful for offline operation, GDPR compliance and privacy in general +  # See https://squidfunk.github.io/mkdocs-material/setup/changing-the-fonts/#autoloading +  # +  # This option was superseded by the privacy plugin: +  # https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#built-in-privacy-plugin +  font: false + +# Navigation +# https://www.mkdocs.org/user-guide/writing-your-docs/#configure-pages-and-navigation  nav:    - index.md    - install.md  | 
