Why Sinhala News Online Is Broken (And What We're Doing About It)
Most Sinhala-language news sites were built for a pre-smartphone era. Slow loads, garbled text, and desktop-only layouts leave millions of readers underserved. Here's our diagnosis — and what LakFeed does differently.
LakFeed Editorial
June 2, 2025 · 2 min read
Open any major Sinhala-language news site on a mid-range Android phone with a 4G connection, and start a timer. On average you'll wait six to nine seconds before you can read anything. On a 3G connection — still common outside Colombo — that climbs past fifteen seconds. Many readers just close the tab.
This is not a minor inconvenience. It is a structural failure that affects the majority of Sri Lanka's population.
The Ad-First Architecture Problem
Most Sinhala news sites were monetised early with banner advertising networks that prioritise impression volume over page performance. The result is a page that loads dozens of third-party scripts — tracking pixels, ad auctions, social widgets — before the headline renders. Those scripts are often hosted on servers with high latency from Sri Lanka.
The reader experience is a direct casualty of an ad-tech stack designed for American broadband speeds.
Font Loading as an Afterthought
Sinhala script requires a specialised font — system fonts on most Android devices either don't include Sinhala glyphs or render them poorly. A well-built site loads a Sinhala web font early and deliberately. Most sites either don't load one at all (falling back to ugly system rendering) or load it as a blocking resource that delays text visibility.
We spent two weeks tuning font loading on LakFeed. The Noto Sans Sinhala family is preloaded, subset to the characters we actually use, and served from Google's CDN with the display=swap descriptor so text is always visible while the font loads in.
Mobile Layout as an Afterthought
Sri Lanka's internet is predominantly mobile. TRC data consistently shows mobile subscriptions outnumbering fixed broadband connections by more than ten to one.
Despite this, most Sinhala news sites were designed for desktop first — or designed for desktop only. The mobile experience is either a shrunken desktop layout or a separate m. subdomain maintained as a second-class citizen.
LakFeed was built mobile-first from line one of CSS. The desktop layout is an enhancement, not the default.
What We Do Differently
We don't run third-party advertising scripts at launch. That alone cuts page weight by 60–70% compared to a typical Sinhala news portal.
We serve static HTML where possible and defer JavaScript to after the page is interactive. News is read, not installed — there's no reason a headlines page should require a React bundle to load before text appears.
We're not claiming to have solved Sinhala news UX. But we are committed to treating it as a first-order concern rather than an afterthought. If you notice something that feels slow or broken, tell us — we take performance reports seriously.