Skip to content
Dashboard

Copy link to headingStatic React Applications

next build
next export

Copy link to headingApp Component

Some differences between `_document.js` and `_app.js`.
Some differences between `_document.js` and `_app.js`.

Copy link to headingPage Transitions

Copy link to headingBetter Apollo and Redux Integration

Copy link to headingBetter Error Handling

Copy link to headingBabel 7

Copy link to headingJSX Fragments

render() {
return <React.Fragment>
<A />,
<B />
</React.Fragment>
}

render() {
return <>
<A />,
<B />
</>
}

Copy link to headingNested .babelrc

src/
.babelrc # General .babelrc
components/
i18n/
.babelrc # This .babelrc only applies to this directory

Copy link to headingFirst-class TypeScript Support

Copy link to headingNextjs.org

The opening video of `nextjs.org`

Copy link to headingOne place for our documentation

The documentation will always reflect the latest stable version
The documentation will always reflect the latest stable version

Copy link to headingLearn, step-by-step

The easiest way to start learning Next.js
The easiest way to start learning Next.js

Copy link to headingGet Inspired

Showcase of projects built with Next.js
Showcase of projects built with Next.js

Ready to deploy?