← Back to blog
7 habits for frontend performance
Small, repeatable habits that are easy to do and easy to forget — they add up.
Performance isn’t a one-time cleanup before launch; it’s a daily habit. Here are the ones I repeat most:
- Ask if the image can be smaller — modern formats, right-sized dimensions
- Don’t load every font —
font-display: swapsaves your life - Static when you can — build-time beats runtime, always
- Animate only
transformandopacity— avoid layout thrash - Lazy-load below-the-fold content
- Delete unused dependencies — every byte of bundle counts
- Measure on a real network, not just localhost
No silver bullet, but these add up into a noticeably better experience.