astro pagefind
v1.6.0
Intégration Astro pour la recherche de site statique Pagefind.
astro dev
Installer:
npm i astro-pagefind
Ajoutez l'intégration à la configuration Astro :
//astro.config.ts
import { defineConfig } from "astro/config" ;
import pagefind from "astro-pagefind" ;
export default defineConfig ( {
build : {
format : "file" ,
} ,
integrations : [ pagefind ( ) ] ,
} ) ;
Ajouter un composant de recherche sur une page :
---
import Search from " astro-pagefind/components/Search " ;
---
< Search id = " search " className = " pagefind-ui " uiOptions = { { showImages: false } } />
Voir Main.layout pour un exemple d'utilisation.
En mode SSR, Astro donne accès aux paramètres de requête URL qui peuvent être utilisés pour pré-remplir la requête de recherche via un accessoire :
---
import Search from " astro-pagefind/components/Search " ;
export const prerender = false ;
const q = Astro . url . searchParams . get ( " q " ) ?? undefined ;
---
< Search query = { q } />
Voir prefilled.astro pour un exemple complet.