Skip to content

Latest commit

 

History

History
89 lines (57 loc) · 1.66 KB

README.md

File metadata and controls

89 lines (57 loc) · 1.66 KB

Nuxt Template

Kickstart your web development project with this boilerplate that combines the power of Vue 3, Nuxt, and PrimeVue. The project also includes essential tools for code formatting, linting, and commit conventions.

Features

  • Vue 3 and Nuxt: Utilize the latest version of Vue.js and Nuxt for building modern, scalable web applications.

  • PrimeVue UI Components: Elevate your user interface with a comprehensive suite of customizable, feature-rich UI components provided by PrimeVue.

  • Code Formatting with Prettier: Maintain consistent code style and formatting across your project.

  • Static Code Analysis with ESLint: Identify and fix problematic patterns in your code to ensure code quality.

  • Commit Convention with Commitlint: Enforce a consistent and meaningful commit message convention for better collaboration.

  • Git Hooks with Husky: Automatically lint commit messages, code, and run tests upon committing or pushing changes.

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.