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
.
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.-
Install DashUI Next.js
Open the dashui-next-js-pro directory with your cmd or terminal. Open the project folder and install its dependencies.
This command will download all the necessary dependencies for dashui next.js theme in the node_modules directory.
Start
Run
npm run dev
oryarn dev
orpnpm dev
to start the development server on http://localhost:3000Visit
http://localhost:3000
to view your application
Creating a Production Build.
Production build of your app.
Run
npm run build
command in your project directory to make the Production build app.This output is generated inside the
.next
folder:Once you execute above command, the production build run locally at
http://localhost:3000
.