Updated the instructions to reflect building before starting

Updated this in a previous pull request but the way I phrased it was a little bit off. 

This provides the instructions that you must BUILD before STARTING the server for it to actually reflect the changes made.
This commit is contained in:
Kenneth C 2019-02-13 16:50:27 -05:00 committed by GitHub
parent 0672431563
commit 27cbe26936
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,11 @@ function Logo () {
export default Logo;
```
Restart the server, and you should see your site with a new Logo in the top left corner!
Rebuild and restart the server, and you should see your site with a new Logo in the top left corner!
```
$ npm run build
```
Then
```
$ npm run start
```