Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
275 changed files with 13896 additions and 98 deletions
Showing only changes of commit 8250957b85 - Show all commits

View File

@ -76,9 +76,7 @@ public class Program
policy.AllowAnyMethod(); policy.AllowAnyMethod();
policy.AllowAnyHeader(); policy.AllowAnyHeader();
policy.AllowCredentials(); policy.AllowCredentials();
#if DEBUG policy.SetIsOriginAllowed(_ => true);
policy.WithOrigins("http://localhost:4200");
#endif
}); });
}); });