https://github.com/6hislain/nuxt-3-fundamentals
VueSchool Nuxt 3 Course
https://github.com/6hislain/nuxt-3-fundamentals
imdb-api nuxt vue
Last synced: about 1 month ago
JSON representation
VueSchool Nuxt 3 Course
- Host: GitHub
- URL: https://github.com/6hislain/nuxt-3-fundamentals
- Owner: 6hislain
- Created: 2024-11-02T14:16:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-03T09:11:29.000Z (over 1 year ago)
- Last Synced: 2025-04-07T15:21:42.712Z (about 1 year ago)
- Topics: imdb-api, nuxt, vue
- Language: Vue
- Homepage: https://nuxt-fundamentals-24.netlify.app
- Size: 235 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt Fundamentals
Video course from VueSchool
## Setup
Make sure to install dependencies:
```bash
# npm
npm install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
```
Locally preview production build:
```bash
# npm
npm run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.