https://github.com/bencodezen/nuxt-pokedex-demo
Demo of Nuxt 3 with Netlify Serverless Functions with PokeApi
https://github.com/bencodezen/nuxt-pokedex-demo
nuxt nuxtjs pokedex serverless vue
Last synced: 3 months ago
JSON representation
Demo of Nuxt 3 with Netlify Serverless Functions with PokeApi
- Host: GitHub
- URL: https://github.com/bencodezen/nuxt-pokedex-demo
- Owner: bencodezen
- Created: 2021-08-06T14:17:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-23T16:43:07.000Z (almost 3 years ago)
- Last Synced: 2025-03-21T13:56:34.535Z (10 months ago)
- Topics: nuxt, nuxtjs, pokedex, serverless, vue
- Language: Vue
- Homepage: https://nuxt-pokedex-demo.netlify.app
- Size: 231 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install
```
## 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.