|
6 | 6 |
|
7 | 7 | Next.js is a minimalistic framework for server-rendered React applications.
|
8 | 8 |
|
9 |
| -**NOTE! the README on the `master` branch might not match that of the [latest stable release](https://github.com/zeit/next.js/releases/latest)! ** |
| 9 | +_**NOTE! the README on the `master` branch might not match that of the [latest stable release](https://github.com/zeit/next.js/releases/latest)!**_ |
| 10 | + |
| 11 | +<!-- START doctoc generated TOC please keep comment here to allow auto update --> |
| 12 | +<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> |
| 13 | +<!-- https://github.com/thlorenz/doctoc --> |
| 14 | + |
| 15 | +- [How to use](#how-to-use) |
| 16 | + - [Setup](#setup) |
| 17 | + - [Automatic code splitting](#automatic-code-splitting) |
| 18 | + - [CSS](#css) |
| 19 | + - [Built-in CSS support](#built-in-css-support) |
| 20 | + - [CSS-in-JS](#css-in-js) |
| 21 | + - [Static file serving (e.g.: images)](#static-file-serving-eg-images) |
| 22 | + - [Populating `<head>`](#populating-head) |
| 23 | + - [Fetching data and component lifecycle](#fetching-data-and-component-lifecycle) |
| 24 | + - [Routing](#routing) |
| 25 | + - [With `<Link>`](#with-link) |
| 26 | + - [Imperatively](#imperatively) |
| 27 | + - [Router Events](#router-events) |
| 28 | + - [Prefetching Pages](#prefetching-pages) |
| 29 | + - [With `<Link>`](#with-link-1) |
| 30 | + - [Imperatively](#imperatively-1) |
| 31 | + - [Custom server and routing](#custom-server-and-routing) |
| 32 | + - [Custom `<Document>`](#custom-document) |
| 33 | + - [Custom error handling](#custom-error-handling) |
| 34 | + - [Custom configuration](#custom-configuration) |
| 35 | + - [Customizing webpack config](#customizing-webpack-config) |
| 36 | + - [Customizing babel config](#customizing-babel-config) |
| 37 | +- [Production deployment](#production-deployment) |
| 38 | +- [FAQ](#faq) |
| 39 | +- [Roadmap](#roadmap) |
| 40 | +- [Authors](#authors) |
| 41 | + |
| 42 | +<!-- END doctoc generated TOC please keep comment here to allow auto update --> |
10 | 43 |
|
11 | 44 | ## How to use
|
12 | 45 |
|
| 46 | +### Setup |
| 47 | + |
13 | 48 | Install it:
|
14 | 49 |
|
15 | 50 | ```bash
|
|
0 commit comments