You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using cargo doc --open, the docs are generated and placed in target/doc and the url file:///path/to/project/target/doc/cratename/index.html is opened in the default browser.
Due to CORS restrictions, Firefox does not allow pages from file urls to access fonts further up in the directory tree, so the fonts in target/docs are not loaded.
A solution would have to change the directory structure of the output, or move the index.html one level up. I am not sure how documentation of workspaces is handled.