Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 11 days 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 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-15T23:33:50.000Z (3 months ago)
- Last Synced: 2024-08-16T00:36:52.500Z (3 months ago)
- Topics: nuxt, nuxt3, vue, vue3, vuetify, vuetify3
- Language: Vue
- Homepage: https://nakamura196.github.io/nuxt3-demo/
- Size: 6.03 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.