Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 759 Bytes

README.md

File metadata and controls

49 lines (36 loc) · 759 Bytes

Next.js Starter

Documentation

Project is based on Next.js, a production-ready React Framework. Check out the documentation for more information.

Prerequisites

  • node
  • pnpm

Usage

Firstly, install all necessary dependencies:

pnpm install

To start a development server:

pnpm run dev

To build the app for production:

pnpm run build
pnpm start

Folder structure

nextjs-starter/
├── config
├── public
└── src
    ├── components
    │   ├── elements
    │   ├── layouts
    │   ├── modules
    │   └── templates
    ├── hooks
    ├── pages
    ├── services
    └── stores