Home > Software design >  Filter out preflight/options requests in chrome dev tools
Filter out preflight/options requests in chrome dev tools

Time:09-30

Is there a way to filter out preflight/options requests in the chrome browser dev tools network tab?

CodePudding user response:

If you filter the Network pane to "Fetch/XHR" it seems to omit OPTIONS request, and mark CORS requests' method as "GET prefetch".

Screenshot of the Chrome Dev Tools Network pane with "Fetch/XHR" filter selected and a red arrow pointing at it.

  • Related