-
Notifications
You must be signed in to change notification settings - Fork 27.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'canary' into with-tailwindcss-emotion
- Loading branch information
Showing
332 changed files
with
2,344 additions
and
1,328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Cannot output to /public | ||
|
||
#### Why This Error Occurred | ||
|
||
Either you set `distDir` to `public` in your `next.config.js` or during `next export` you tried to export to the `public` directory. | ||
|
||
This is not allowed due to `public` being a special folder in Next.js used to serve static assets. | ||
|
||
#### Possible Ways to Fix It | ||
|
||
Use a different `distDir` or export to a different folder. | ||
|
||
### Useful Links | ||
|
||
- [Static file serving docs](https://nextjs.org/docs#static-file-serving-eg-images) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Global CSS Must Be in Your Custom <App> | ||
|
||
#### Why This Error Occurred | ||
|
||
An attempt to import Global CSS from a file other than `pages/_app.js` was made. | ||
|
||
Global CSS cannot be used in files other than your Custom `<App>` due to its side-effects and ordering problems. | ||
|
||
#### Possible Ways to Fix It | ||
|
||
Relocate all Global CSS imports to your `pages/_app.js` file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Static directory is deprecated | ||
|
||
#### Why This Error Occurred | ||
|
||
In versions prior to 9.0.6 the `static` directory was used to serve static assets in a Next.js application. This has been deprecated in favor of a `public` directory. | ||
|
||
The reason we want to support a `public` directory instead is to not require the `/static` prefix for assets anymore and there is no reason to maintain both paths. | ||
|
||
#### Possible Ways to Fix It | ||
|
||
You can move your `static` directory inside of the `public` directory and all URLs will remain the same as they were before. | ||
|
||
**Before** | ||
|
||
```sh | ||
static/ | ||
my-image.jpg | ||
pages/ | ||
index.js | ||
components/ | ||
my-image.js | ||
``` | ||
|
||
**After** | ||
|
||
```sh | ||
public/ | ||
static/ | ||
my-image.jpg | ||
pages/ | ||
index.js | ||
components/ | ||
my-image.js | ||
``` | ||
|
||
### Useful Links | ||
|
||
- [Static file serving docs](https://nextjs.org/docs#static-file-serving-eg-images) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.DS_Store | ||
.next | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Google AMP Story | ||
|
||
## How to use | ||
|
||
### Using `create-next-app` | ||
|
||
Execute [`create-next-app`](https://github.com/zeit/next.js/tree/canary/packages/create-next-app) with [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) or [npx](https://github.com/zkat/npx#readme) to bootstrap the example: | ||
|
||
```bash | ||
npx create-next-app --example amp-story amp-app | ||
# or | ||
yarn create next-app --example amp-story amp-app | ||
``` | ||
|
||
### Download manually | ||
|
||
Download the example: | ||
|
||
```bash | ||
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/amp-story | ||
cd amp-story | ||
``` | ||
|
||
Install it and run: | ||
|
||
```bash | ||
npm install | ||
npm run dev | ||
# or | ||
yarn | ||
yarn dev | ||
``` | ||
|
||
Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download)) | ||
|
||
```bash | ||
now | ||
``` | ||
|
||
## The idea behind the example | ||
|
||
This example shows how to create an AMP page with `amp-story` using Next.js and the AMP feature. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "amp-story", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"dev": "next", | ||
"build": "next build", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
"next": "latest", | ||
"react": "^16.7.0", | ||
"react-dom": "^16.7.0" | ||
}, | ||
"license": "ISC" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
import Head from 'next/head' | ||
|
||
export const config = { amp: true } | ||
|
||
export default () => ( | ||
<> | ||
<Head> | ||
<title>Example AMP Story in Next.js</title> | ||
<script | ||
async | ||
key='amp-story' | ||
custom-element='amp-story' | ||
src='https://cdn.ampproject.org/v0/amp-story-1.0.js' | ||
/> | ||
<script | ||
async | ||
key='amp-video' | ||
custom-element='amp-video' | ||
src='https://cdn.ampproject.org/v0/amp-video-0.1.js' | ||
/> | ||
</Head> | ||
|
||
<amp-story | ||
standalone='' | ||
title='Stories in AMP - Hello World' | ||
publisher='AMP Project' | ||
publisher-logo-src='https://amp.dev/favicons/coast-228x228.png' | ||
poster-portrait-src='https://amp.dev/static/samples/img/story_dog2_portrait.jpg' | ||
poster-square-src='https://amp.dev/static/samples/img/story_dog2_square.jpg' | ||
poster-landscape-src='https://amp.dev/static/samples/img/story_dog2_landscape.jpg' | ||
> | ||
{/* <!-- A story consists of one or more pages. Each page is declared by an `amp-story-page` element. Pages are designed by layering videos, images and text. Here we have a page that uses two layers. One layer filling the available space with an image and one text layer that shows a heading. --> */} | ||
<amp-story-page id='page-1'> | ||
<amp-story-grid-layer template='fill'> | ||
<amp-img | ||
src='https://amp.dev/static/samples/img/story_dog2.jpg' | ||
width='720' | ||
height='1280' | ||
layout='responsive' | ||
/> | ||
</amp-story-grid-layer> | ||
<amp-story-grid-layer template='vertical'> | ||
<h1>Hello World</h1> | ||
<p>This is an AMP Story.</p> | ||
</amp-story-grid-layer> | ||
</amp-story-page> | ||
|
||
{/* <!-- Here we have a page consisting of a video which autoplays and loops. --> */} | ||
<amp-story-page id='page-2'> | ||
<amp-story-grid-layer template='fill'> | ||
<amp-video | ||
autoplay='' | ||
loop='' | ||
width='720' | ||
height='960' | ||
poster='https://amp.dev/static/samples/img/story_video_dog_cover.jpg' | ||
layout='responsive' | ||
> | ||
<source | ||
src='https://amp.dev/static/samples/video/story_video_dog.mp4' | ||
type='video/mp4' | ||
/> | ||
</amp-video> | ||
</amp-story-grid-layer> | ||
</amp-story-page> | ||
|
||
{/* <!-- Pre-defined entry animations make it possible to create dynamic pages without videos. The length and initial delay can be customized using the `animate-in-duration` and `animate-in-delay` properties. The [animations sample](/documentation/examples/visual-effects/amp_story_animations/) shows all available animantions in action. --> */} | ||
<amp-story-page id='animation-demo'> | ||
<amp-story-grid-layer template='fill'> | ||
<amp-img | ||
src='https://amp.dev/static/samples/img/story_dog4.jpg' | ||
animate-in='fly-in-top' | ||
width='720' | ||
height='1280' | ||
layout='responsive' | ||
/> | ||
</amp-story-grid-layer> | ||
<amp-story-grid-layer template='thirds'> | ||
<h2 | ||
animate-in='fly-in-bottom' | ||
grid-area='lower-third' | ||
animate-in-delay='0.4s' | ||
> | ||
Best walk ever! | ||
</h2> | ||
</amp-story-grid-layer> | ||
</amp-story-page> | ||
|
||
{/* <!-- Stories can use predefined layouts to style the page. Here we're using the `thirds` template. For an overview about the available layouts take a look at the [layouts sample](/documentation/examples/style-layout/amp_story_layouts/). --> */} | ||
<amp-story-page id='layout-demo'> | ||
<amp-story-grid-layer template='thirds'> | ||
<amp-img | ||
grid-area='upper-third' | ||
src='https://amp.dev/static/samples/img/story_thirds_1.jpg' | ||
width='560' | ||
height='420' | ||
layout='responsive' | ||
/> | ||
<amp-img | ||
grid-area='middle-third' | ||
src='https://amp.dev/static/samples/img/story_thirds_2.jpg' | ||
width='560' | ||
height='420' | ||
layout='responsive' | ||
/> | ||
<amp-img | ||
grid-area='lower-third' | ||
src='https://amp.dev/static/samples/img/story_thirds_3.jpg' | ||
width='560' | ||
height='420' | ||
layout='responsive' | ||
/> | ||
</amp-story-grid-layer> | ||
</amp-story-page> | ||
|
||
{/* <!-- A "bookend" panel containing links to other resources will appear on the last page of your story if you include an `amp-story-bookend` that references a [bookend JSON config](/static/samples/json/bookend.json). --> */} | ||
<amp-story-bookend | ||
src='https://amp.dev/static/samples/json/bookend.json' | ||
layout='nodisplay' | ||
/> | ||
</amp-story> | ||
</> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.