File size: 270 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import Image from "next/image";
const builderLoader = ({ src, width, quality }) => {
return `${src}?width=${width}&quality=${quality || 75}`;
};
const BuilderImage = (props) => {
return <Image loader={builderLoader} {...props} />;
};
export default BuilderImage;
|