Skip to content

Commit 45301a6

Browse files
authored
docs: Fix broken logo link in API docs (#8642)
1 parent 4ad0800 commit 45301a6

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

jsdoc-conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"template": "./node_modules/clean-jsdoc-theme",
3030
"theme_opts": {
3131
"default_theme": "dark",
32-
"title": "Parse Server",
32+
"title": "<img src='../.github/parse-server-logo.png' class='logo'/>",
3333
"create_style": "header, .sidebar-section-title, .sidebar-title { color: #139cee !important } .logo { margin-left : 40px; margin-right: 40px }"
3434
}
3535
},

package-lock.json

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release_docs.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@ npm run docs
2727

2828
mkdir -p "docs/api/${DEST}"
2929
cp -R out/* "docs/api/${DEST}"
30+
31+
# Copy other resources
32+
RESOURCE_DIR=".github"
33+
mkdir -p "docs/${RESOURCE_DIR}"
34+
cp "./.github/parse-server-logo.png" "docs/${RESOURCE_DIR}/"

0 commit comments

Comments
 (0)