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

https://github.com/alvarosabu/nuxt-lighthouse-ci

Basic example of using Lighthouse CI with Nuxt 3 and GitHub Actions
https://github.com/alvarosabu/nuxt-lighthouse-ci

ci lighthouse lighthouse-ci nuxt nuxt3 nuxt3-template performance

Last synced: 6 months ago
JSON representation

Basic example of using Lighthouse CI with Nuxt 3 and GitHub Actions

Awesome Lists containing this project

README

          

![repository-banner.png](https://res.cloudinary.com/alvarosaburido/image/upload/v1612193118/as-portfolio/Repo_Banner_kexozw.png)

# Nuxt 3 Lighthouse CI example

> Basic example of using [Lighthouse CI](https://github.com/GoogleChrome/lighthouse-ci) with [Nuxt 3](https://nuxt.com/docs/getting-started/introduction) and GitHub Actions

## 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
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.