Replies: 1 comment 1 reply
-
Do you see any error message in the browser console? I.e. what is blocked by CORS. Can you give a more concrete sample of what you're trying to do? The "hammer" is app.UseCors(policy => policy
.AllowAnyHeader()
.AllowAnyMethod()
.AllowCredentials()
.AllowAnyOrigin()); Maybe #49871 is also relevant for you. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
how to confgure CORS on Kestrel that runs Blazor WebAssembly project? (The one that is started as part
dotnet run
command on client-side project).All answers I have found on the internet treats about kestrel in ASP.NET backed Blazor (which I am not interested in).
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions