Skip to content

Commit

Permalink
Added dash.dev to allowOrigin in production.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbrunvoll committed Nov 8, 2023
1 parent d459374 commit 3bd713e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
options.AddPolicy("DashCorsPolicy",
policy =>
{
policy.AllowAnyMethod().AllowAnyHeader().WithOrigins("https://dash.variant.no");
policy.AllowAnyMethod().AllowAnyHeader().WithOrigins("https://dash.variant.no", "https://variantdash-dev.azurewebsites.net");
});
}
}
Expand Down

0 comments on commit 3bd713e

Please sign in to comment.