Nuxt 3 Minimal Starter

DEMO SITE: https://spdigitalagency-web-app-dashboard.vercel.app/

AUTHOR: https://www.linkedin.com/in/wahyu-fatur-rizky/

Spdigitalagency Web App Dashboard This is a Nuxt 3 minimal starter project for building a web app dashboard.

Features Nuxt 3 Tailwind CSS TypeScript Pinia Axios Docker Vercel Getting Started Clone the repository:

Getting Started

  1. Clone the repository:

git clone https://github.com/wahyufaturrizki/spdigitalagency-web-app-dashboard.git

  1. Install the dependencies:

npm install

  1. Start the development server:

npm run dev

  1. Open http://localhost:3000 in your browser to view the app.

Look at the Nuxt 3 documentation to learn more.

Deployment To deploy the dashboard to Vercel, follow these steps:

Create a new Vercel project and connect it to your GitHub repository. In the Vercel dashboard, go to the "Settings" tab and enable the "Automatic Deployments" feature. Click the "Deploy" button to deploy the dashboard. Contributing Contributions are welcome! Please read the contributing guidelines before submitting a pull request.

License This project is licensed under the MIT License.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.