Discussion about this post

User's avatar
AlexSharp1's avatar

There is also the possibility to add post pipelines to Umbraco. That would also make your cors policy work:

services.Configure<UmbracoPipelineOptions>(options =>

{

options.AddFilter(

new UmbracoPipelineFilter("CorsPolicy",

postPipeline: applicationBuilder =>

{

applicationBuilder.UseCors();

}

));

});

Expand full comment

No posts