Joel Kuzmarski
Joel Kuzmarski
@jeffdomke If it were me, I would eliminate randomly chosen uneducated TryMyUI testers and have a prerequisite to participation in App Mining be that you, as a fellow app developer...
Or perhaps a button when on the `Component.astro` "tab" that when manually clicked adds the import statement to the top of `Page.astro`. Would be helpful if it switched you back...
Agreed, perhaps add a comment to demystify where the format library is coming from, and then use an existing variable to demonstrate attribute usage. At first I thought the package...
I think I've encountered this as well. My workaround was to, in the context of this example, add to `package.json`: ```json "dependencies": { ---snip--- "can-stache-converters": "*", ---snip--- } ``` I...
## IntelliSense in action - `Img` hover:  - CTRL+SPACE  - `src` hover: 
https://github.com/JonasKruckenberg/imagetools/issues/567
A benefit to preferring progressive jpg over webp->avif->jpg is less redundant markup sent over the wire, especially when using multiple sizes across multiple fallback image types (even though gzip does...
I was able to up my lighthouse from 89/94 to 99 thanks to preloading, but keep in mind this is for an image the incures the network request `304` dance.
I think `loading` makes sense. Probably doesn't hurt to set `decoding`, but don't think it really helps? Maybe I was thinking more along this line regarding `preload` when I made...
Some good notes regarding `loading` on this page: https://web.dev/articles/browser-level-image-lazy-loading#distance-from-viewport_thresholds > The eager value is simply an instruction to load the image as usual, without delaying the load further if it...