https://github.com/nakamura196/nuxt3-demo
Sample Repository for Nuxt3 Including Examples of Various Library Usages
https://github.com/nakamura196/nuxt3-demo
nuxt nuxt3 vue vue3 vuetify vuetify3
Last synced: 4 months ago
JSON representation
Sample Repository for Nuxt3 Including Examples of Various Library Usages
- Host: GitHub
- URL: https://github.com/nakamura196/nuxt3-demo
- Owner: nakamura196
- License: other
- Created: 2023-03-15T22:01:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-19T08:31:11.000Z (over 1 year ago)
- Last Synced: 2025-10-11T12:12:18.737Z (8 months ago)
- Topics: nuxt, nuxt3, vue, vue3, vuetify, vuetify3
- Language: Vue
- Homepage: https://nakamura196.github.io/nuxt3-demo/
- Size: 6.28 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Nuxt 3 Demo
Sample Repository for Nuxt3 Including Examples of Various Library Usages
## 🌐 Website
[Visit the demo page](https://nakamura196.github.io/nuxt3-demo/) to try it out.
## 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
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.