Daniel Hernandez
Daniel Hernandez
Ok I managed to get everything working. Here's what I did: 1. Got rid of tslint rules with errors. 2. Update server.tsx and client.tsx: `new Container({} as any);`. That line...
I'd love to see this implemented as well. My use case is for AEM - here's some context: consider a page: `www.site.com/search`which includes these components: - hero - promo -...
I resorted to writing an extension for now: ``` htmx.defineExtension('push-url-w-params', { onEvent : function(name, e) { if (name === "htmx:configRequest") { const path = e.target.getAttribute('data-push-url') const params = new URLSearchParams(e.detail.parameters).toString()...