An open API service indexing awesome lists of open source software.

https://github.com/alexweininger/nuxt-3


https://github.com/alexweininger/nuxt-3

Last synced: 4 months ago
JSON representation

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.