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

* Fix links
This commit is contained in:
Sébastien Dubois 2017-01-16 23:23:24 +02:00 committed by Dan Zajdband
parent 70b92e6b65
commit a66ff658f4
27 changed files with 30 additions and 30 deletions

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/basic-css

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/custom-server-express

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/custom-server-hapi
@ -29,4 +29,4 @@ Most of the times the default Next server will be enough but sometimes you want
Because the Next.js server is just a node.js module you can combine it with any other part of the node.js ecosystem. in this case we are using [Hapi](https://hapijs.com) to build a custom router on top of Next.
The example shows a server that serves the component living in `pages/a.js` when the route `/b` is requested and `pages/b.js` when the route `/a` is accessed. This is obviously a non-standard routing strategy. You can see how this custom routing is being made inside `server.js`.
The example shows a server that serves the component living in `pages/a.js` when the route `/b` is requested and `pages/b.js` when the route `/a` is accessed. This is obviously a non-standard routing strategy. You can see how this custom routing is being made inside `server.js`.

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/custom-server

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/data-fetch

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/head-elements

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/hello-world

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/hello-world

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/nested-components

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/parameterized-routing

View file

@ -2,7 +2,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/shared-modules

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/ssr-caching

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/using-inferno
@ -29,4 +29,4 @@ This example uses [Inferno](https://github.com/infernojs/inferno), an insanely f
Here's how we did it:
* Use `next.config.js` to customize our webpack config to support [inferno-compat](https://www.npmjs.com/package/inferno-compat)
* Use `next.config.js` to customize our webpack config to support [inferno-compat](https://www.npmjs.com/package/inferno-compat)

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/using-preact
@ -30,4 +30,4 @@ This example uses [Preact](https://github.com/developit/preact) instead of React
Here's how we did it:
* Create `.babelrc` file with es2015 and react presets. This allow us to get rid of the hard coded React dependency for core Next.js modules.
* Use `next.config.js` to customize our webpack config to support [preact-compat](https://github.com/developit/preact-compat)
* Use `next.config.js` to customize our webpack config to support [preact-compat](https://github.com/developit/preact-compat)

View file

@ -2,7 +2,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/using-router

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-aphrodite

View file

@ -1,6 +1,6 @@
# Example app using custom babel config
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-custom-babel-config

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-cxs

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-glamor

View file

@ -2,7 +2,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-jest

View file

@ -2,7 +2,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-loading

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-mobx

View file

@ -2,7 +2,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-prefetching

View file

@ -3,7 +3,7 @@
## How to use
Download the example [or clone the repo](https://github.com/zeit/next.js.git):
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-redux

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-styled-components

View file

@ -5,7 +5,7 @@ This example features how you use PostCSS with styled-jsx via [styled-jsx-postcs
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-styled-jsx-postcss

View file

@ -3,7 +3,7 @@
## How to use
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
Download the example [or clone the repo](https://github.com/zeit/next.js):
```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-styletron