Files
kycnotme/web/src/components/HtmxScript.astro
2025-07-03 08:38:11 +00:00

16 lines
220 B
Plaintext

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