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
242 changed files with 10844 additions and 99 deletions
Showing only changes of commit de5dc274d7 - Show all commits

View File

@ -64,6 +64,9 @@ public class Program
policy.AllowAnyMethod(); policy.AllowAnyMethod();
policy.AllowAnyHeader(); policy.AllowAnyHeader();
policy.AllowCredentials(); policy.AllowCredentials();
#if DEBUG
policy.WithOrigins("http://localhost:4200");
#endif
}); });
}); });