An open API service indexing awesome lists of open source software.

https://github.com/nucliweb/core-web-vitals-workshop


https://github.com/nucliweb/core-web-vitals-workshop

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

          

# core-web-vitals-workshop

```js
const ProductImage = ({ filename, alt }) => {
const variants = getImageVariants(filename);

return (

{variants.avif && }
{variants.webp && }
{alt}

);
};
```