Files
kycnotme/web/src/components/HtmxScript.astro

16 lines
225 B
Plaintext
Raw Normal View History

2025-05-19 10:23:36 +00:00
---
---
<script>
import * as htmx from 'htmx.org'
htmx.config.globalViewTransitions = false
document.addEventListener('astro:after-swap', () => {
htmx.process(document.body)
})
window.htmx = htmx
</script>