Add it to the body
<body hx-ext="hx-astro-view-transition">
An example
<form
hx-post="/api/signIn"
hx-view-transition="/"
hx-swap="none"
>
Note: if you are using SSR
You might want to add the following in the layout.astro:
Astro.response.headers.set(
"Cache-Control",
"no-cache, no-store, must-revalidate",
);
Astro.response.headers.set("Pragma", "no-cache");
Astro.response.headers.set("Expires", "0");