Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix image corruption #128

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ if [[ $BUILD_STATIC == true ]]; then
echo "Building static site"
echo "-----------------------------------"
yarn build
# hack to correct logo since docusaurus messes it up during build
# This needs to be done until https://github.com/facebook/Docusaurus/issues/1427 is fixed
cp static/img/botorch_logo_lockup_white.svg build/botorch/img/botorch_logo_lockup_white.svg
else
echo "-----------------------------------"
echo "Starting local server"
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"rename-version": "docusaurus-rename-version"
},
"devDependencies": {
"docusaurus": "^1.7.2"
"docusaurus": "^1.9.0"
}
}