This is a super minimal starter for Next 13's App Router.
Not intended for use in production. Purely used for educational reasons.
First, install the dependencies:
$ npm install
Then, start a local development server:
$ npm run dev
Note: Unlike create-react-app, we need to run the dev
command, not start
. The start
command is used to run a production server; we'll learn more about that later in the course.