https://github.com/nikukyugamer/practice-vuejs
Challenge Vue.js
https://github.com/nikukyugamer/practice-vuejs
vue
Last synced: 2 months ago
JSON representation
Challenge Vue.js
- Host: GitHub
- URL: https://github.com/nikukyugamer/practice-vuejs
- Owner: nikukyugamer
- License: mit
- Created: 2019-12-22T12:36:34.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-29T13:16:01.000Z (2 months ago)
- Last Synced: 2025-03-29T13:36:31.365Z (2 months ago)
- Topics: vue
- Language: TypeScript
- Homepage: https://challenging-vuejs.vercel.app/
- Size: 5.09 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## 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
```Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.