mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 10:17:55 +02:00
Fix link for logo
On projects where baseUrl is "/", the extra slash causes issues.
This commit is contained in:
parent
3f2e8d3715
commit
c72da0c225
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ class HomeSplash extends React.Component {
|
|||
<div className="homeSplashFade">
|
||||
<div className="wrapper homeWrapper">
|
||||
<div className="projectLogo">
|
||||
<img src={siteConfig.baseUrl + "/img/docusaurus.svg"} />
|
||||
<img src={siteConfig.baseUrl + "img/docusaurus.svg"} />
|
||||
</div>
|
||||
<div className="inner">
|
||||
<h2 className="projectTitle">
|
||||
|
|
Loading…
Add table
Reference in a new issue