Skip to content

AdamSchinzel/nextjs-starter

Repository files navigation

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