Created
November 19, 2023 22:27
-
-
Save netaisllc/3cc72bb35ace64ceca4425374e452930 to your computer and use it in GitHub Desktop.
Astro wrapper component to handle HMTX and Astro ViewTransistions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
import { ViewTransitions } from 'astro:transitions' | |
--- | |
<ViewTransitions /> | |
<script> | |
// List for Astro to report swap is complete so Htmx can reparse the DOM | |
document.addEventListener('astro:after-swap', () => { | |
window.htmx.process(document.body) | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment