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
{{ message }}
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
Hi!
I believe there is an error generating the path to the 'all.css' file. A '/' is being placed at the very beginning, and this is not allowing it to be properly loaded into index.html.
Result after build documentation: <link rel="stylesheet" type="text/css" href="/all.css" media="all" />
This is not a bug and working as intended. The generated HTML files are intended to be hosted by a web server. Opening the files from the local file system is not supported. See also #174 for a more detailed discussion.
However, please have a look into the --base-url option. Setting this flag might already solve your problem.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi!
I believe there is an error generating the path to the 'all.css' file. A '/' is being placed at the very beginning, and this is not allowing it to be properly loaded into index.html.
Result after build documentation:
<link rel="stylesheet" type="text/css" href="/all.css" media="all" />
Expected result:
<link rel="stylesheet" type="text/css" href="all.css" media="all" />
The text was updated successfully, but these errors were encountered: