nuxt3-and-vuetify icon indicating copy to clipboard operation
nuxt3-and-vuetify copied to clipboard

Repo to support my blogpost about using Nuxt 3 and Vuetify - https://codybontecou.com/how-to-use-vuetify-with-nuxt-3.html

How to use Vuetify with Nuxt 3

Tutorial - https://codybontecou.com/how-to-use-vuetify-with-nuxt-3.html

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Development Server

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

npm run dev

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Checkout the deployment documentation for more information.