Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/code-pop/nuxt-3-essentials
https://github.com/code-pop/nuxt-3-essentials
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/code-pop/nuxt-3-essentials
- Owner: Code-Pop
- Created: 2022-06-04T05:49:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-17T20:22:49.000Z (almost 2 years ago)
- Last Synced: 2024-11-30T21:08:00.604Z (about 1 month ago)
- Language: Vue
- Size: 217 KB
- Stars: 7
- Watchers: 4
- Forks: 16
- 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://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.