Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 545 Bytes

File metadata and controls

48 lines (37 loc) · 545 Bytes

Next.js 13 Features

  • App directory
  • New routing system
  • Next Fonts
  • React Server Components
  • Data Fetching
  • Layouts
  • Metadata API
  • API Route Handlers
  • loading.js Page
  • and more

Usage

Install dependencies:

npm install
# or
yarn

Run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Build the project:

npm run build
# or
yarn build

Run production build:

npm run start
# or
yarn start