Skip to content
Dashboard

Link to headingStatic React Applications

next build
next export

Link to headingApp Component

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

Link to headingPage Transitions

Page transitions example: `page-transitions-app-next.now.sh` by Xavier Cazalot (Source)

Link to headingBetter Apollo and Redux Integration

Link to headingBetter Error Handling

Link to headingBabel 7

Link to headingJSX Fragments

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

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

Link to headingNested .babelrc

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

Link to headingFirst-class TypeScript Support

Link to headingNextjs.org

The opening video of `nextjs.org`

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

Link to headingLearn, step-by-step

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

Link to headingGet Inspired

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