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
- Host: GitHub
- URL: https://github.com/codybontecou/nuxt3-and-vuetify
- Owner: CodyBontecou
- Created: 2022-05-06T00:37:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-07T18:00:23.000Z (over 2 years ago)
- Last Synced: 2023-03-05T16:33:42.746Z (about 2 years ago)
- Language: TypeScript
- Size: 154 KB
- Stars: 53
- Watchers: 2
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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.