Skip to main content
Version: 4.0.0

Optional Fields

Both the $path function and Link component support the optional fields searchParams, hash, and trailingSlash.

---
import Link from "astro-typesafe-routes/link";
---

<Link
to="/blog"
hash="header"
searchParams={{ filter: "recent" }}
trailingSlash
>
Slug here
</Link>