Andy Damevin
Andy Damevin
For some reason, when used from npm (and packaged with esbuild), it doesn't work. ```js import "htmx.org" import "hyperscript.org" ``` htmx is working fine, does hyperscript require an extra step?
ok, after looking at the sources, this works: ```js import _hyperscript from "hyperscript.org"; _hyperscript.browserInit(); ``` But maybe there is some way to avoid it (like htmx)?
@FroMage it would nice to have this for the htmx demo?
well on the 15 it seems, this doesn't give us much time to prepare :-/
I think we should meet and have a look to our codebase in htmx to see how we could improve the xp with htmx annotations
This is the Spring equivalent: https://github.com/wimdeblauwe/htmx-spring-boot Maybe we should have an htmx extension for this?
Yeah, we should add version detection and pass it to the Frameworks so that they can have the right pre-conf `.../browser`... @melloware I am super busy right now, do you...
Until we have a proper fix, we should update the documentation for Angular 17 to add the `build-dir: dist/[app-name]/browser` in application.properties. @stephennimmo would you submit a PR? https://github.com/quarkiverse/quarkus-quinoa/blob/main/docs/modules/ROOT/pages/web-frameworks.adoc#angular-test-configuration
This is a tricky one 🤪, my take on this is: - If this url is invalid (this needs to be checked), then it's a bad practice from Vite to...