Fix CORS problem
In our application StartUp.cs
, we have a problem that we need to fix and this one is the CORS problem. We will start by adding CORS to our application. In our ConfigureServices
we need to add:
And next in our Configure
method we need to add the following line:
Last updated