Files
kycnotme/web/src/components/HtmxScript.astro
2025-05-19 10:23:36 +00:00

16 lines
225 B
Plaintext

---
---
<script>
import * as htmx from 'htmx.org'
htmx.config.globalViewTransitions = false
document.addEventListener('astro:after-swap', () => {
htmx.process(document.body)
})
window.htmx = htmx
</script>