An open API service indexing awesome lists of open source software.

https://github.com/codybontecou/nuxt3-and-vuetify

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

Last synced: 5 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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:

```bash
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist
```

## Development Server

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

```bash
npm run dev
```

## Production

Build the application for production:

```bash
npm run build
```

Locally preview production build:

```bash
npm run preview
```

Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment) for more information.