astro pagefind
v1.6.0
Pagefind 静的サイト検索のための Astro の統合。
astro dev
モードで提供するインストール:
npm i astro-pagefind
Astro 構成に統合を追加します。
//astro.config.ts
import { defineConfig } from "astro/config" ;
import pagefind from "astro-pagefind" ;
export default defineConfig ( {
build : {
format : "file" ,
} ,
integrations : [ pagefind ( ) ] ,
} ) ;
ページに検索コンポーネントを追加します。
---
import Search from " astro-pagefind/components/Search " ;
---
< Search id = " search " className = " pagefind-ui " uiOptions = { { showImages: false } } />
使用例については、Main.layout を参照してください。
SSR モードでは、Astro は、プロパティを介して検索クエリを事前に入力するために使用できる URL クエリ パラメーターへのアクセスを提供します。
---
import Search from " astro-pagefind/components/Search " ;
export const prerender = false ;
const q = Astro . url . searchParams . get ( " q " ) ?? undefined ;
---
< Search query = { q } />
完全な例については、prefilled.astro を参照してください。