Skip to content

Getting Started

Installation

Quick Install

The astro add command automates the installation for you.

Terminal window
pnpm astro add astro-page-insight

Manual Install

  1. Install the required dependencies.
Terminal window
pnpm add astro-page-insight
  1. Add the integration to your Astro config.
astro.config.mjs
import pageInsight from "astro-page-insight";
export default defineConfig({
integrations: [
pageInsight(),
],
});