Skip to content

Latest commit

 

History

History

optimization

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Optimize web performance

  • Minifying css, js file
  • Browser caching, header:
    • Set di header network
     // Instructing the Vercel edge to cache the file
    res.setHeader('Cache-control', 'stale-while-revalidate, s-maxage=3600')
    • OR redis
  • Compress image to webp
  • Lazy load, Code Splitting: hanya load komponen yg dibutuhkan React.lazy,
  • Use CDN
  • Server Side Rendering/SSG:

Additional Reading