Getting Started

A professional DashUI Next.js kit that comes with plenty of ready-to-use components that will help you to build more beautiful application (web app) and frontend pages.

DashUI Next.js UI kit is built with the most popular front-end framework ReactJS Bootstrap with react-scripts.

This doc will guide you to understand how DashUI Next.js theme is organized, basics of how to customize, and how to compile from the source code if you want.


Running in Local environment

This project is scaffolded using npx create-next-app@latest.

  1. Requirements Node.js

    Before proceeding you'll need to have the latest (>=18.20.2) stable (LTS) nodejs. Install Node.js or already have it installed on your machine move to next step.

  2. Install DashUI Next.js

    Open the dashui-next-js-pro directory with your cmd or terminal. Open the project folder and install its dependencies.

    cd dashui-next-js-pro
    npm install

    This command will download all the necessary dependencies for dashui next.js theme in the node_modules directory.

  3. Start

    Run npm run dev or yarn dev or pnpm dev to start the development server on http://localhost:3000

    Visit http://localhost:3000 to view your application

    npm run dev

Creating a Production Build.

Production build of your app.

  1. Run npm run build command in your project directory to make the Production build app.

    npm run build
  2. This output is generated inside the .next folder:

    npm run start

    Once you execute above command, the production build run locally at http://localhost:3000.