This project was bootstrapped with Create Next App.
Find the most recent version of this guide at here. And check out Next.js repo for the most up-to-date info.
.
├── README.md
├── components
│ ├── breadcrumbs.js
│ ├── head.js
│ ├── nav.js
│ ├── product-detail.js
│ ├── product-list.js
│ └── product.js
├── config
│ └── Config.js
├── node_modules
│ └── [...]
├── pages
│ └── index.js
│ └── items.js
├── services
│ └── item.js
├── static
│ ├── assets
│ └── favicon.ico
└── styles
└── styles.scss
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any errors in the console.
Builds the app for production to the .next
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
Starts the application in production mode. The application should be compiled with `next build` first.
See the section in Next docs about deployment for more information.