To debug this kind of app with react-devtools I'd put <head>...<script src="http://localhost:8097"></script></head> in my index.html and run devtools with npx react-devtools - that would connect to my app in an iframe.
Is there equivalent way of using relay-devtools? The above method doesn't work, but perhaps there's different port I should be connecting to?
Thanks!
Devtools won't see Relay within an iframe.
To debug this kind of app with
react-devtools
I'd put<head>...<script src="http://localhost:8097"></script></head>
in myindex.html
and run devtools withnpx react-devtools
- that would connect to my app in an iframe.Is there equivalent way of using
relay-devtools
? The above method doesn't work, but perhaps there's different port I should be connecting to? Thanks!