-
I'm trying to customize the source component (via overriding its Here is my directory layout:
Here is my mkdocs.yml: site_name: Test
theme:
name: material
logo: assets/logo.svg
icon:
repo: fontawesome/brands/github
custom_dir: overrides
extra_css:
- stylesheets/custom.css
nav:
Home: index.md
|
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
May 10, 2021
Replies: 1 comment
-
I’m afraid that’s not possible. You can only extend the files which are part of the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
squidfunk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I’m afraid that’s not possible. You can only extend the files which are part of the
material
folder. In order to make changes to the TypeScript or SASS sources you’d need to go through a build process as described in the theme development guide.