Skip to content

Commit

Permalink
nits & remove test files
Browse files Browse the repository at this point in the history
  • Loading branch information
endiliey committed Jun 2, 2018
1 parent 59b2595 commit 0c04019
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Binary file removed docs/assets/docusaurus.png
Binary file not shown.
2 changes: 0 additions & 2 deletions docs/getting-started-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ id: installation
title: Installation
---

![docusaurus](/docs/assets/docusaurus.png)

Docusaurus was designed from the ground up to be easily installed and used to get your website up and running quickly. To install Docusaurus, we have created an easy script that will get all of the infrastructure set up for you:

1. Ensure you have the latest version of [Node](https://nodejs.org/en/download/) installed. We also recommend you install [Yarn](https://yarnpkg.com/en/docs/install) as well.
Expand Down
4 changes: 2 additions & 2 deletions lib/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,11 @@ function execute(port) {

// serve static assets from these locations
app.use(
`${siteConfig.baseUrl}${readMetadata.getDocsPath()}/assets/`,
`${siteConfig.baseUrl}docs/assets`,
express.static(join(CWD, '..', readMetadata.getDocsPath(), 'assets'))
);
app.use(
`${siteConfig.baseUrl}blog/assets/`,
`${siteConfig.baseUrl}blog/assets`,
express.static(join(CWD, 'blog', 'assets'))
);
app.use(siteConfig.baseUrl, express.static(join(CWD, 'static')));
Expand Down

0 comments on commit 0c04019

Please sign in to comment.