How to link React Native (expo) app with Nest js?
After setting the nest js project and verifying all routes using insomnia I've tried enabling cors async function bootstrap() { const app = await NestFactory.create(AppModule); app.enableCors() await app.listen(3001); } bootstrap(); but I still get Network Error the problem seems like…