Frontend & browser·The network from the browser
the browser asked whether its copy was still current and got back a 304 with no body at all.
Conditional request
Also calledIf-None-Match, revalidation request, 304
A request carrying a validator from a previously cached response, so the server can answer 304 Not Modified instead of resending the body. It saves the payload but not the round trip, which is why a page full of revalidations still feels slow on a high-latency connection. Assets with a content hash in the name should never reach this path, because they should be cached as immutable instead.