Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

fix slow loading images in react

// put "?auto=compress" at the end of the image URL
// it will compress the image and load slightly fast

function App() {
   return (
     <img 
      src="https://images.unsplash.com/photo-1541534401786-2077eed87a74?auto=compress"
      alt="new"
      />
   );
 }
 
PREVIOUS NEXT
Tagged: #fix #slow #loading #images #react
ADD COMMENT
Topic
Name
9+6 =