I am getting following error in the Angular JS.
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://192.168.1.28:3000/system/organizations/logos/000/000/001/original/img-user.png?1453890721. (Reason: CORS header 'Access-Control-Allow-Origin' missing).
I search about the solution and I found solution like
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
<add name="Access-Control-Allow-Headers" value="Content-Type" />
<add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" />
</customHeaders>
</httpProtocol>
This above code, we need to add in - Web.Config
Now, I have simple angular application, I not able to understand where is Web.config is there and where should I create it?
Can you please help me for - what should I do for the solution?
Thanks, In advance.