https://github.com/alexweininger/nuxt-3
https://github.com/alexweininger/nuxt-3
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexweininger/nuxt-3
- Owner: alexweininger
- Created: 2022-10-05T17:10:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-05T17:17:22.000Z (over 3 years ago)
- Last Synced: 2024-10-18T06:16:28.337Z (about 1 year ago)
- Language: Vue
- Size: 130 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Basic Starter
Azure Static Web Apps allows you to easily build Nuxt 3 apps in minutes. Use this repo with the Nuxt 3 tutorial to build a new server-rendered site.
Check out the following to learn more:
1. [nuxt 3 documentation](https://v3.nuxtjs.org)
2. [server-rendered nuxt 3 app on Azure Static Web Apps documentation](#)
3. [nuxt 3 support on Azure Static Web Apps](#)
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
```
## Development Server
Start Nuxt.js app in development on http://localhost:3000:
```bash
npm run dev -- -o
```
## 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.