An astro integration that adds Pagespeed insights into the dev toolbar.
Just run astro add astro-lighthouse
and you're good to go!
Alternatively, you can install it manually:
- Install the package with
npm install astro-lighthouse
- Add the following to your
astro.config.mjs
:
import lighthouse from 'astro-lighthouse';
export default {
integrations: [
lighthouse(),
// Your other integrations here
],
};