I'm trying to use proxy with my react-native app (build with CRNA and Expo).
So in my package.json
file I put : "proxy": "192.168.1.27:8080" and then make simple get request with fetch with the
/users` path and react call me network error (he don't see the proxy param, just /users when I'm debugging).
The fetch request work well if I put the full url.
In react (for website) I do the same thing and that's work to.
Thank's for your help.