Skip to content

Commit b7e17e0

Browse files
authored
Update references to zeit/next.js (#13463)
1 parent 001230e commit b7e17e0

File tree

353 files changed

+533
-531
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

353 files changed

+533
-531
lines changed

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/zeit/next.js/discussions
4+
url: https://github.com/vercel/next.js/discussions
55
about: Ask questions and discuss with other community members

.github/actions/next-stats-action/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Downloads and runs project with provided configs gathering stats to compare branches
44
5-
See it in action at Next.js https://github.com/zeit/next.js
5+
See it in action at Next.js https://github.com/vercel/next.js
66

77
## Getting Started
88

@@ -26,7 +26,7 @@ const StatsConfig = {
2626
// the main branch to compare against (what PRs will be merging into)
2727
mainBranch: 'canary',
2828
// the main repository path (relative to https://github.com/)
29-
mainRepo: 'zeit/next.js',
29+
mainRepo: 'vercel/next.js',
3030
// whether to attempt auto merging the main branch into PR before running stats
3131
autoMergeMain: boolean | undefined,
3232
// an array of configs for each run

contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Deploy the example using [Vercel](https://vercel.com/now):
140140

141141
### Using `create-next-app`
142142

143-
Execute [`create-next-app`](https://github.com/zeit/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
143+
Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
144144

145145
```bash
146146
npm init next-app --example DIRECTORY_NAME DIRECTORY_NAME-app

docs/advanced-features/amp-support/introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: With minimal config, and without leaving React, you can start addin
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/amp">AMP</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/amp">AMP</a></li>
1111
</ul>
1212
</details>
1313

@@ -21,7 +21,7 @@ To enable AMP support for a page, and to learn more about the different AMP conf
2121

2222
## Caveats
2323

24-
- Only CSS-in-JS is supported. [CSS Modules](/docs/basic-features/built-in-css-support.md) aren't supported by AMP pages at the moment. You can [contribute CSS Modules support to Next.js](https://github.com/zeit/next.js/issues/10549).
24+
- Only CSS-in-JS is supported. [CSS Modules](/docs/basic-features/built-in-css-support.md) aren't supported by AMP pages at the moment. You can [contribute CSS Modules support to Next.js](https://github.com/vercel/next.js/issues/10549).
2525

2626
## Related
2727

docs/advanced-features/custom-error-page.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ If you want to render the built-in error page you can by importing the `Error` c
5656
import Error from 'next/error'
5757

5858
export async function getServerSideProps() {
59-
const res = await fetch('https://api.github.com/repos/zeit/next.js')
59+
const res = await fetch('https://api.github.com/repos/vercel/next.js')
6060
const errorCode = res.ok ? false : res.statusCode
6161
const json = await res.json()
6262

docs/advanced-features/custom-server.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ description: Start a Next.js app programmatically using a custom server.
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/custom-server">Basic custom server</a></li>
11-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/custom-server-express">Express integration</a></li>
12-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/custom-server-hapi">Hapi integration</a></li>
13-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/custom-server-koa">Koa integration</a></li>
14-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/ssr-caching">SSR Caching</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/custom-server">Basic custom server</a></li>
11+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/custom-server-express">Express integration</a></li>
12+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/custom-server-hapi">Hapi integration</a></li>
13+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/custom-server-koa">Koa integration</a></li>
14+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/ssr-caching">SSR Caching</a></li>
1515
</ul>
1616
</details>
1717

docs/advanced-features/customizing-babel-config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Extend the babel preset added by Next.js with your own configs.
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-custom-babel-config">Customizing babel configuration</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-custom-babel-config">Customizing babel configuration</a></li>
1111
</ul>
1212
</details>
1313

docs/advanced-features/customizing-postcss-config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Extend the PostCSS config and plugins added by Next.js with your ow
77
<details open>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-tailwindcss">Tailwind CSS Example</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-tailwindcss">Tailwind CSS Example</a></li>
1111
</ul>
1212
</details>
1313

docs/advanced-features/dynamic-import.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Dynamically import JavaScript modules and React Components and spli
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-dynamic-import">Dynamic Import</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-dynamic-import">Dynamic Import</a></li>
1111
</ul>
1212
</details>
1313

docs/advanced-features/preview-mode.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ description: Next.js has the preview mode for statically generated pages. You ca
99
<details open>
1010
<summary><b>Examples</b></summary>
1111
<ul>
12-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/cms-datocms">DatoCMS Example</a> (<a href="https://next-blog-datocms.now.sh/">Demo</a>)</li>
13-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/cms-takeshape">TakeShape Example</a> (<a href="https://next-blog-takeshape.now.sh/">Demo</a>)</li>
14-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/cms-sanity">Sanity Example</a> (<a href="https://next-blog-sanity.now.sh/">Demo</a>)</li>
15-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/cms-prismic">Prismic Example</a> (<a href="https://next-blog-prismic.now.sh/">Demo</a>)</li>
16-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/cms-contentful">Contentful Example</a> (<a href="https://next-blog-contentful.now.sh/">Demo</a>)</li>
12+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/cms-datocms">DatoCMS Example</a> (<a href="https://next-blog-datocms.now.sh/">Demo</a>)</li>
13+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/cms-takeshape">TakeShape Example</a> (<a href="https://next-blog-takeshape.now.sh/">Demo</a>)</li>
14+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/cms-sanity">Sanity Example</a> (<a href="https://next-blog-sanity.now.sh/">Demo</a>)</li>
15+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/cms-prismic">Prismic Example</a> (<a href="https://next-blog-prismic.now.sh/">Demo</a>)</li>
16+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/cms-contentful">Contentful Example</a> (<a href="https://next-blog-contentful.now.sh/">Demo</a>)</li>
1717
</ul>
1818
</details>
1919

docs/advanced-features/static-html-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Export your Next.js app to static HTML, and run it standalone witho
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-static-export">Static Export</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-static-export">Static Export</a></li>
1111
</ul>
1212
</details>
1313

docs/api-reference/data-fetching/getInitialProps.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: Enable Server-Side Rendering in a page and do initial data populati
1414
<details>
1515
<summary><b>Examples</b></summary>
1616
<ul>
17-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/data-fetch">Data fetch</a></li>
17+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/data-fetch">Data fetch</a></li>
1818
</ul>
1919
</details>
2020

@@ -30,7 +30,7 @@ function Page({ stars }) {
3030
}
3131

3232
Page.getInitialProps = async (ctx) => {
33-
const res = await fetch('https://api.github.com/repos/zeit/next.js')
33+
const res = await fetch('https://api.github.com/repos/vercel/next.js')
3434
const json = await res.json()
3535
return { stars: json.stargazers_count }
3636
}
@@ -45,7 +45,7 @@ import React from 'react'
4545

4646
class Page extends React.Component {
4747
static async getInitialProps(ctx) {
48-
const res = await fetch('https://api.github.com/repos/zeit/next.js')
48+
const res = await fetch('https://api.github.com/repos/vercel/next.js')
4949
const json = await res.json()
5050
return { stars: json.stargazers_count }
5151
}

docs/api-reference/next.config.js/cdn-support-with-asset-prefix.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = {
1717
}
1818
```
1919

20-
Next.js will automatically use your prefix in the scripts it loads, but this has no effect whatsoever on the [public](/docs/basic-features/static-file-serving.md) folder; if you want to serve those assets over a CDN, you'll have to introduce the prefix yourself. One way of introducing a prefix that works inside your components and varies by environment is documented [in this example](https://github.com/zeit/next.js/tree/canary/examples/with-universal-configuration-build-time).
20+
Next.js will automatically use your prefix in the scripts it loads, but this has no effect whatsoever on the [public](/docs/basic-features/static-file-serving.md) folder; if you want to serve those assets over a CDN, you'll have to introduce the prefix yourself. One way of introducing a prefix that works inside your components and varies by environment is documented [in this example](https://github.com/vercel/next.js/tree/canary/examples/with-universal-configuration-build-time).
2121

2222
## Related
2323

docs/api-reference/next.config.js/custom-page-extensions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Extend the default page extensions used by Next.js when resolving p
44

55
# Custom Page Extensions
66

7-
Aimed at modules like [@next/mdx](https://github.com/zeit/next.js/tree/canary/packages/next-mdx), which adds support for pages ending with `.mdx`. You can configure the extensions looked for in the `pages` directory when resolving pages.
7+
Aimed at modules like [@next/mdx](https://github.com/vercel/next.js/tree/canary/packages/next-mdx), which adds support for pages ending with `.mdx`. You can configure the extensions looked for in the `pages` directory when resolving pages.
88

99
Open `next.config.js` and add the `pageExtensions` config:
1010

docs/api-reference/next.config.js/custom-webpack-config.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Some commonly asked for features are available as plugins:
1010
- [@zeit/next-less](https://github.com/zeit/next-plugins/tree/master/packages/next-less)
1111
- [@zeit/next-stylus](https://github.com/zeit/next-plugins/tree/master/packages/next-stylus)
1212
- [@zeit/next-preact](https://github.com/zeit/next-plugins/tree/master/packages/next-preact)
13-
- [@next/mdx](https://github.com/zeit/next.js/tree/canary/packages/next-mdx)
14-
- [@next/bundle-analyzer](https://github.com/zeit/next.js/tree/canary/packages/next-bundle-analyzer)
13+
- [@next/mdx](https://github.com/vercel/next.js/tree/canary/packages/next-mdx)
14+
- [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer)
1515

1616
In order to extend our usage of `webpack`, you can define a function that extends its config inside `next.config.js`, like so:
1717

@@ -47,7 +47,7 @@ Example usage of `defaultLoaders.babel`:
4747
```js
4848
// Example config for adding a loader that depends on babel-loader
4949
// This source was taken from the @next/mdx plugin source:
50-
// https://github.com/zeit/next.js/tree/canary/packages/next-mdx
50+
// https://github.com/vercel/next.js/tree/canary/packages/next-mdx
5151
module.exports = {
5252
webpack: (config, options) => {
5353
config.module.rules.push({

docs/api-reference/next.config.js/environment-variables.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ description: Learn to add and access environment variables in your Next.js appli
99
<details>
1010
<summary><b>Examples</b></summary>
1111
<ul>
12-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-env-from-next-config-js">With env</a></li>
13-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-now-env">With Now env</a></li>
12+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-env-from-next-config-js">With env</a></li>
13+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-now-env">With Now env</a></li>
1414
</ul>
1515
</details>
1616

docs/api-reference/next.config.js/exportPathMap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: Customize the pages that will be exported as HTML files when using
99
<details>
1010
<summary><b>Examples</b></summary>
1111
<ul>
12-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-static-export">Static Export</a></li>
12+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-static-export">Static Export</a></li>
1313
</ul>
1414
</details>
1515

docs/api-reference/next.config.js/introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = (phase, { defaultConfig }) => {
2626
}
2727
```
2828

29-
`phase` is the current context in which the configuration is loaded. You can see the available phases [here](https://github.com/zeit/next.js/blob/canary/packages/next/next-server/lib/constants.ts#L1-L4). Phases can be imported from `next/constants`:
29+
`phase` is the current context in which the configuration is loaded. You can see the available phases [here](https://github.com/vercel/next.js/blob/canary/packages/next/next-server/lib/constants.ts#L1-L4). Phases can be imported from `next/constants`:
3030

3131
```js
3232
const { PHASE_DEVELOPMENT_SERVER } = require('next/constants')
@@ -44,7 +44,7 @@ module.exports = (phase, { defaultConfig }) => {
4444
}
4545
```
4646

47-
The commented lines are the place where you can put the configs allowed by `next.config.js`, which are defined [here](https://github.com/zeit/next.js/blob/canary/packages/next/next-server/server/config.ts#L12-L63).
47+
The commented lines are the place where you can put the configs allowed by `next.config.js`, which are defined [here](https://github.com/vercel/next.js/blob/canary/packages/next/next-server/server/config.ts#L12-L63).
4848

4949
However, none of the configs are required, and it's not necessary to understand what each config does, instead, search for the features you need to enable or modify in this section and they will show you what to do.
5050

docs/api-reference/next/amp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Enable AMP in a page, and control the way Next.js adds AMP to the p
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/amp">AMP</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/amp">AMP</a></li>
1111
</ul>
1212
</details>
1313

docs/api-reference/next/head.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description: Add custom elements to the `head` of your page with the built-in He
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/head-elements">Head Elements</a></li>
11-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/layout-component">Layout Component</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/head-elements">Head Elements</a></li>
11+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/layout-component">Layout Component</a></li>
1212
</ul>
1313
</details>
1414

docs/api-reference/next/link.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Enable client-side transitions between routes with the built-in Lin
77
<details>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/hello-world">Hello World</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/hello-world">Hello World</a></li>
1111
</ul>
1212
</details>
1313

docs/api-reference/next/router.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The API of `Router`, exported by `next/router`, is defined below.
7070
<details>
7171
<summary><b>Examples</b></summary>
7272
<ul>
73-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/using-router">Using Router</a></li>
73+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/using-router">Using Router</a></li>
7474
</ul>
7575
</details>
7676

@@ -260,7 +260,7 @@ Router.reload()
260260
<details>
261261
<summary><b>Examples</b></summary>
262262
<ul>
263-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/with-loading">With a page loading indicator</a></li>
263+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/with-loading">With a page loading indicator</a></li>
264264
</ul>
265265
</details>
266266

docs/api-routes/api-middlewares.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description: API Routes provide built-in middlewares that parse the incoming r
77
<details open>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes-middleware">API Routes with middleware</a></li>
11-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes-cors">API Routes with CORS</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes-middleware">API Routes with middleware</a></li>
11+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes-cors">API Routes with CORS</a></li>
1212
</ul>
1313
</details>
1414

@@ -115,4 +115,4 @@ async function handler(req, res) {
115115
export default handler
116116
```
117117

118-
> Go to the [API Routes with CORS](https://github.com/zeit/next.js/tree/canary/examples/api-routes-cors) example to see the finished app
118+
> Go to the [API Routes with CORS](https://github.com/vercel/next.js/tree/canary/examples/api-routes-cors) example to see the finished app

docs/api-routes/dynamic-api-routes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: You can add the dynamic routes used for pages to API Routes too. Le
77
<details open>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes">Basic API Routes</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes">Basic API Routes</a></li>
1111
</ul>
1212
</details>
1313

docs/api-routes/introduction.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ description: Next.js supports API Routes, which allow you to build your API with
77
<details open>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes">Basic API Routes</a></li>
11-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes-middleware">API Routes with middleware</a></li>
12-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes-graphql">API Routes with GraphQL</a></li>
13-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes-rest">API Routes with REST</a></li>
14-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes-cors">API Routes with CORS</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes">Basic API Routes</a></li>
11+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes-middleware">API Routes with middleware</a></li>
12+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes-graphql">API Routes with GraphQL</a></li>
13+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes-rest">API Routes with REST</a></li>
14+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes-cors">API Routes with CORS</a></li>
1515
</ul>
1616
</details>
1717

docs/api-routes/response-helpers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description: API Routes include a set of Express.js-like methods for the respons
77
<details open>
88
<summary><b>Examples</b></summary>
99
<ul>
10-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes">Basic API Routes</a></li>
11-
<li><a href="https://github.com/zeit/next.js/tree/canary/examples/api-routes-rest">API Routes with REST</a></li>
10+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes">Basic API Routes</a></li>
11+
<li><a href="https://github.com/vercel/next.js/tree/canary/examples/api-routes-rest">API Routes with REST</a></li>
1212
</ul>
1313
</details>
1414

0 commit comments

Comments
 (0)