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

16 lines
220 B
Plaintext
Raw Normal View History

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