Bridge library to enable full support for Alpine components in pages using hotwire turbo
npm install alpine-hotwire-turbo-adapteralpine-hotwire-turbo-adapter allows you to add support for Alpine.js to your Hotwire Turbo powered apps.
It handles Hotwire Turbo events to properly clean up the DOM from Alpine generated code when navigating between pages.
```
bash
npm i alpine-hotwire-turbo-adapter
`
Include it in your script along with Alpine JS.
`javascript
import 'alpine-hotwire-turbo-adapter'
import 'alpinejs'
``