You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/create-next-app/templates/default/README.md
+6-9
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,6 @@ After creating an app, it should look something like:
28
28
```
29
29
.
30
30
├── README.md
31
-
├── components
32
-
│ ├── head.js
33
-
│ └── nav.js
34
31
├── node_modules
35
32
│ ├── [...]
36
33
├── package.json
@@ -54,7 +51,7 @@ Out of the box, we get:
54
51
- Server rendering and indexing of `./pages/`
55
52
- Static file serving. `./public/` is mapped to `/`
56
53
57
-
Read more about [Next's Routing](https://github.com/zeit/next.js#routing)
54
+
Read more about [Next's Routing](https://nextjs.org/docs/routing/introduction)
58
55
59
56
## Available Scripts
60
57
@@ -78,7 +75,7 @@ It correctly bundles React in production mode and optimizes the build for the be
78
75
Starts the application in production mode.
79
76
The application should be compiled with \`next build\` first.
80
77
81
-
See the section in Next docs about [deployment](https://github.com/zeit/next.js/wiki/Deployment) for more information.
78
+
See the section in Next docs about [deployment](https://nextjs.org/docs/deployment) for more information.
82
79
83
80
## Using CSS
84
81
@@ -107,7 +104,7 @@ export default () => (
107
104
)
108
105
```
109
106
110
-
Read more about [Next's CSS features](https://github.com/zeit/next.js#css).
107
+
Read more about [Next's CSS features](https://nextjs.org/docs/basic-features/built-in-css-support).
111
108
112
109
## Adding Components
113
110
@@ -147,15 +144,15 @@ For the initial page load, `getInitialProps` will execute on the server only. `g
147
144
148
145
_Note: `getInitialProps` can **not** be used in children components. Only in `./pages/`._
149
146
150
-
Read more about [fetching data and the component lifecycle](https://github.com/zeit/next.js#fetching-data-and-component-lifecycle)
147
+
Read more about [fetching data and the component lifecycle](https://nextjs.org/docs/basic-features/data-fetching)
151
148
152
149
## Syntax Highlighting
153
150
154
151
To configure the syntax highlighting in your favorite text editor, head to the [relevant Babel documentation page](https://babeljs.io/docs/editors) and follow the instructions. Some of the most popular editors are covered.
155
152
156
153
## Deploy to Now
157
154
158
-
[now](https://zeit.co/now) offers a zero-configuration single-command deployment.
155
+
[ZEIT Now](https://zeit.co/home?utm_source=create-next-app&utm_medium=referral&utm_campaign=Create%20Next%20App) offers a zero-configuration single-command deployment.
159
156
160
157
1. Install the `now` command-line tool either via npm `npm install -g now` or Yarn `yarn global add now`.
161
158
@@ -167,7 +164,7 @@ To configure the syntax highlighting in your favorite text editor, head to the [
167
164
168
165
Paste that URL into your browser when the build is complete, and you will see your deployed app.
169
166
170
-
You can find more details about [`now` here](https://zeit.co/now).
167
+
You can find more details about [`ZEIT Now` here](https://zeit.co/home?utm_source=create-next-app&utm_medium=referral&utm_campaign=Create%20Next%20App).
0 commit comments