mkdocs serve works but mkdocs gh-deploy fails silently #6953
-
When I run I tried using Here's the contents of my mkdocs.yml: plugins:
markdown_extensions:
Correctly rendered site homepage Any thoughts would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello @mtillman14, The CSS link on the https://researchos.github.io/ResearchOS/ page points to: https://researchos.github.io/assets/stylesheets/main.7e359304.min.css and it returns 404 The Set it to |
Beta Was this translation helpful? Give feedback.
Hello @mtillman14,
you can always check the source of the website using the
view-source:
prefix:view-source:https://researchos.github.io/ResearchOS/
or use the developer tools in your browser to see the accessed links to css etc.
The CSS link on the https://researchos.github.io/ResearchOS/ page points to: https://researchos.github.io/assets/stylesheets/main.7e359304.min.css and it returns 404
The
ResearchOS
part is removed, so yourmkdocs.yml
file lacks a properly configuredsite_url
setting:https://www.mkdocs.org/user-guide/configuration/#site_url
Set it to
https://researchos.github.io/ResearchOS/
and see if all issues will be fixed, I didn't investigate past the CSS part ✌️