Unpredictable ResponseAborted message #81367
-
SummaryI got this message only if I open Chrome DevTools and it starts to ask for com.chrome.devtools.json or css source maps. If it is not found, then Next.js answers with 404, but also shows in console ResponseAborted. If I do a separate request to Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey! I’ve seen this before — what you're describing is actually expected behavior when Chrome DevTools makes background requests to look for source maps or
If that file isn’t present (which is totally fine for most apps), Next.js returns a
Why it only happens when DevTools is open
What You Can DoThis message is harmless — you don’t need to handle or suppress it unless it's flooding logs or triggering false alerts. But if it’s bothering you or showing up in logs you monitor:
Final ThoughtsThis isn’t a Next.js bug — it’s just how Chrome DevTools behaves with optional debugging metadata. If your app runs fine otherwise, you can safely ignore the |
Beta Was this translation helpful? Give feedback.
Hey! I’ve seen this before — what you're describing is actually expected behavior when Chrome DevTools makes background requests to look for source maps or
.well-known
files like:If that file isn’t present (which is totally fine for most apps), Next.js returns a
404
. But when DevTools itself aborts the request (which it often does if it detects a 404 early or switches tabs), you’ll sometimes see this:Why it only happens when DevTools is open
.well-known/...
for enhanced debugging info.