Guest User

Untitled

a guest
Oct 15th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public void Configure(IApplicationBuilder app, IHostingEnvironment env)
  2. {
  3. var URLsCORS = new string[]
  4. {
  5. "http://localhost"
  6. };
  7. app.UseCors(builder =>
  8. {
  9. builder.WithOrigins(URLsCORS).AllowAnyHeader().AllowAnyMethod();
  10. });
  11. }
Add Comment
Please, Sign In to add comment