Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Created June 25, 2021 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gistlyn/5c6aa321280ff40479ef241893057f06 to your computer and use it in GitHub Desktop.
Save gistlyn/5c6aa321280ff40479ef241893057f06 to your computer and use it in GitHub Desktop.
Configure CORS
using ServiceStack;
namespace MyApp
{
public class ConfigureCors : IConfigureAppHost
{
public void Configure(IAppHost appHost)
{
appHost.Plugins.Add(new CorsFeature());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment