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
- Host: GitHub
- URL: https://github.com/alvarosabu/nuxt-lighthouse-ci
- Owner: alvarosabu
- Created: 2023-01-04T16:03:02.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-04T16:03:06.000Z (almost 3 years ago)
- Last Synced: 2025-02-13T01:35:01.906Z (8 months ago)
- Topics: ci, lighthouse, lighthouse-ci, nuxt, nuxt3, nuxt3-template, performance
- Language: HTML
- Homepage:
- Size: 316 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

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