Skip to content
Closed
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ it'll be converted to `/docs/index.html`.
* [Codefellows.org](https://www.codefellows.org)
* [ollieglass.com](http://ollieglass.com/)
* [waigojs.com](https://waigojs.com/) ([source](https://github.com/waigo/waigo.github.io))
* [The State Of JavaScript](http://stateofjs.com/)
* [Edit this file to add yours!](https://github.com/gatsbyjs/gatsby/blob/master/README.md)

*Note, for the sites that have made their source available, you can
Expand Down Expand Up @@ -383,6 +384,11 @@ export.postBuild = function(pages, callback) {

[Webpack doesn't currently support hot-reloading new files added to a context](https://github.com/webpack/webpack/issues/1162). When you add a new file, restart the `gatsby develop` process and your new page will show up.

Make sure you also including the **trailing slash** in your URLs:

- Bad: `http://localhost:8000/foo`
- Good: `http://localhost:8000/foo/`

### Inline CSS

A neat performance feature supported by Gatsby is inlining your CSS in
Expand Down