astro-lighthouse
v0.1.3
Published
Lighthouse Pagespeed insights within the Astro dev toolbar
Downloads
297
Maintainers
Readme
astro-lighthouse
An astro integration that adds Pagespeed insights into the dev toolbar.
Installation
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
],
};