Getting Started
Installation
Quick Install
The astro add command automates the installation for you.
pnpm astro add astro-page-insightnpx astro add astro-page-insightyarn astro add astro-page-insightManual Install
- Install the required dependencies.
pnpm add astro-page-insightnpm install astro-page-insightyarn add astro-page-insight- Add the integration to your Astro config.
import pageInsight from "astro-page-insight";
export default defineConfig({ integrations: [ pageInsight(), ],});