Skip to content

Commit 4aaf985

Browse files
timdorrhedgerh
authored andcommitted
Add a blurb about serve-static
1 parent 8a86259 commit 4aaf985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/recipes/ServerRendering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ In the following recipe, we are going to look at how to set up server-side rende
1414

1515
### Install Packages
1616

17-
For this example, we'll be using [Express](http://expressjs.com/) as a simple web server.
17+
For this example, we'll be using [Express](http://expressjs.com/) as a simple web server. We'll include the [serve-static](https://www.npmjs.com/package/serve-static) middleware to handle static files, which we'll see in just a bit.
1818

1919
We also need to install the React bindings for Redux, since they are not included in Redux by default.
2020

21-
npm install --save react-redux express serve-static
21+
npm install --save express serve-static react-redux
2222

2323

2424
## The Server Side

0 commit comments

Comments
 (0)