Urgent.News

What's breaking now, across thousands of outlets.

Tech

Google crawled 270 of my articles and indexed none — the body it received was 0 characters

Read on: the acceptance check that proved 1 = 1 · 繁體中文版 I assumed my content wasn't good enough. Google had never read my content. What it received inside <div id="app"> was zero characters. The numbers that started it On 13 August 2026 I opened Google Search Console and exported two reports, 427 rows. Three lines stood out: Status Rows Crawled – currently not indexed 270 Soft 404 157 Duplicate,…

On 13 August 2026, the author discovered that Google had crawled and indexed 270 of their articles, but none of them were actually indexed. The body of the content received by Google was 0 characters. The author assumed their content was not good enough, but what Google received inside the div with id "app" was zero characters. Three lines of the reports stood out: Status Rows Crawled – currently not indexed 270, Soft 404 157, and Duplicate, Google chose a different canonical 95.

The first instinct was keywords, depth, and backlinks, but these were not the correct direction. After fetching their own page as Googlebot, the author found that the first HTML sent by the server was a shell, and the body appeared only after JavaScript ran. This led them to realize that Google was missing essential information for indexing.

The author implemented several fixes to improve Google's indexing. First, they placed the body in the first HTML sent by the server. They also injected JSON-LD blocks and hreflang for better SEO. Second, they addressed the 157 soft 404s by ensuring the site responded with a 200 status code only when the requested page existed. They added an edge function to return a 200 status code for non-existent pages and a 410 status code for legacy URLs. Lastly, they implemented fail-open error handling to prevent false positives in Google's indexing.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

App Health Dashboard API: Implementing Checkout Metrics Without Prometheus

A checkout dashboard is useful only if its telemetry survives the same failure that triggers a rollback. TL;DR: emit a small set of counters and gauges outside the payment transaction, attach a stable…

  • Implement checkout metrics using invariants and structured logs, not Prometheus.
  • Use simple dashboard signals like checkoutattempts, checkoutfailures, and dbpingms.
  • Derive dashboard from rollback decisions with minimum failure-to-attempt ratio.

More from Sunday 27 September →