Nginx – Facing a CORS policy issue when requesting from my deployed IP address site at EC2 instance
I have deployed a Full Stack React/Node app on AWS EC2 instance using nginx and facing the CORS policy issue which I have already resolved in my code Index.js const express = require('express'); const cors = require('cors'); require('dotenv').config(); const app…