https://github.com/zernonia/nuxt3-starter
https://github.com/zernonia/nuxt3-starter
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zernonia/nuxt3-starter
- Owner: zernonia
- Created: 2023-04-07T00:41:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-07T00:41:33.000Z (over 2 years ago)
- Last Synced: 2025-02-14T10:56:26.503Z (8 months ago)
- Language: TypeScript
- Size: 92.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Simple Starter
Created this simple starter as it is my go-to stack 😁
## 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.