<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: 360Presence</title>
    <description>The latest articles on DEV Community by 360Presence (@360presence).</description>
    <link>https://dev.to/360presence</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3723864%2Fe5d19694-8adf-47b0-a6bd-f0c29b83c9fe.png</url>
      <title>DEV Community: 360Presence</title>
      <link>https://dev.to/360presence</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/360presence"/>
    <language>en</language>
    <item>
      <title>Why most ‘fast websites’ are still slow in production</title>
      <dc:creator>360Presence</dc:creator>
      <pubDate>Wed, 21 Jan 2026 13:43:31 +0000</pubDate>
      <link>https://dev.to/360presence/why-most-fast-websites-are-still-slow-in-production-35ng</link>
      <guid>https://dev.to/360presence/why-most-fast-websites-are-still-slow-in-production-35ng</guid>
      <description>&lt;p&gt;We shipped a website that scored 95+ on Lighthouse.&lt;/p&gt;

&lt;p&gt;It still felt slow in production.&lt;/p&gt;

&lt;p&gt;Not “a bit off.”&lt;br&gt;
Not “edge cases.”&lt;br&gt;
Slow enough that users noticed.&lt;/p&gt;

&lt;p&gt;This is a teardown of where it actually broke.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Looked Fast (Before Production)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Lighthouse score: green&lt;/li&gt;
&lt;li&gt;Images optimized&lt;/li&gt;
&lt;li&gt;Code split&lt;/li&gt;
&lt;li&gt;CDN enabled&lt;/li&gt;
&lt;li&gt;Pages loaded in under a second on dev machines&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything checked out.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Production Exposed Immediately
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. The Site Loaded Fast. It Didn’t Become Usable Fast.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;HTML showed up quickly.&lt;br&gt;
Then the UI froze.&lt;/p&gt;

&lt;p&gt;Scrolling lagged.&lt;br&gt;
Clicks didn’t register.&lt;br&gt;
Buttons waited.&lt;/p&gt;

&lt;p&gt;The issue wasn’t load time.&lt;br&gt;
It was main-thread blocking.&lt;/p&gt;

&lt;p&gt;JS was doing too much after load.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Third-Party Scripts Didn’t Show Up in Testing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In production we had:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Analytics&lt;/li&gt;
&lt;li&gt;Heatmaps&lt;/li&gt;
&lt;li&gt;Chat widget&lt;/li&gt;
&lt;li&gt;CRM tracker&lt;/li&gt;
&lt;li&gt;A/B testing script&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each one “small.”&lt;br&gt;
Together? A mess.&lt;/p&gt;

&lt;p&gt;They competed for the main thread and delayed interaction.&lt;br&gt;
None of this showed up in local tests.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Mobile Was a Different Website&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Desktop felt okay.&lt;br&gt;
Mobile felt broken.&lt;/p&gt;

&lt;p&gt;Low-end Android devices:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JS execution was slow&lt;/li&gt;
&lt;li&gt;Animations dropped frames&lt;/li&gt;
&lt;li&gt;Hydration took forever&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We optimized for screens we don’t actually ship to.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Lighthouse Didn’t Catch the Real Pain&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Lighthouse said:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Good LCP&lt;/li&gt;
&lt;li&gt;Acceptable CLS&lt;/li&gt;
&lt;li&gt;Decent FCP&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Users said:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;“Scrolling feels stuck”&lt;/li&gt;
&lt;li&gt;“Buttons don’t respond”&lt;/li&gt;
&lt;li&gt;“It loads but doesn’t work”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Perceived performance ≠ metrics.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Infrastructure Wasn’t the Bottleneck (We Assumed It Was)
&lt;/h2&gt;

&lt;p&gt;We first blamed:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CDN&lt;/li&gt;
&lt;li&gt;Hosting&lt;/li&gt;
&lt;li&gt;Cache config&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;None of it fixed the problem.&lt;/p&gt;

&lt;p&gt;The real issue was how much JS shipped up front&lt;br&gt;
and what ran immediately after load.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Changed (After Production Reality)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Killed non-essential third-party scripts&lt;/li&gt;
&lt;li&gt;Deferred everything that wasn’t critical&lt;/li&gt;
&lt;li&gt;Removed animations on first paint&lt;/li&gt;
&lt;li&gt;Reduced client-side work aggressively&lt;/li&gt;
&lt;li&gt;Tested only on low-end devices&lt;/li&gt;
&lt;li&gt;Started measuring real user interaction delay, not just load time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The site didn’t just score well anymore.&lt;br&gt;
It felt fast.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Actual Lesson
&lt;/h2&gt;

&lt;p&gt;Most websites aren’t slow because teams are careless.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;They’re slow because:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Performance is optimized in isolation&lt;/li&gt;
&lt;li&gt;Production complexity is underestimated&lt;/li&gt;
&lt;li&gt;Nobody owns performance after launch&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Speed doesn’t die in development.&lt;br&gt;
It dies in production.&lt;/p&gt;

&lt;p&gt;Written from production lessons at &lt;a href="https://360p.co/" rel="noopener noreferrer"&gt;360presence&lt;/a&gt;, where performance only counts when real users feel it.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>frontend</category>
      <category>performance</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
