1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Update Readme.md

This commit is contained in:
Guillermo Rauch 2016-10-05 16:36:18 -07:00 committed by GitHub
parent 04578072ec
commit 404bee1215

View file

@ -6,7 +6,7 @@
The file-system is the main API. Every `.js` file becomes a route that gets automatically processed and rendered.
Populate `pages/index.js` inside your project:
Populate `./pages/index.js` inside your project:
```
import React from 'react'
@ -21,7 +21,8 @@ So far, we get:
- Automatic transpilation and bundling (with webpack and babel)
- Hot code reloading
- Server rendering and indexing
- Server rendering and indexing of `./pages`
- Static file serving. `./static/` is mapped to `/static/`
### Bundling (code splitting)