Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dentsusoken/nuxt3-app-sample
Nuxt 3 のサンプルアプリケーションです。
https://github.com/dentsusoken/nuxt3-app-sample
nuxt3 vue
Last synced: about 12 hours ago
JSON representation
Nuxt 3 のサンプルアプリケーションです。
- Host: GitHub
- URL: https://github.com/dentsusoken/nuxt3-app-sample
- Owner: dentsusoken
- License: mit
- Created: 2022-11-26T03:19:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T14:14:18.000Z (about 2 years ago)
- Last Synced: 2024-11-11T06:21:00.259Z (about 2 months ago)
- Topics: nuxt3, vue
- Language: TypeScript
- Homepage: https://isid.github.io/nuxt3-app-sample/
- Size: 207 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt3 App Sample
![](https://media.shodousercontents.com/task_images/983/cf5ead1a-bce9-4a43-a859-bf1e9064bc85.gif)
# The Cat API
This app calls The Cat API.
> https://thecatapi.com/
## 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.