diff --git a/LittleShop/LittleShop.csproj b/LittleShop/LittleShop.csproj index 2853bfe..c0e8017 100644 --- a/LittleShop/LittleShop.csproj +++ b/LittleShop/LittleShop.csproj @@ -5,7 +5,7 @@ enable enable b96bedcb-5d39-4d41-98c0-72355dd49c1b - 1.0.5 + 1.0.6 1.0.5.0 1.0.5.0 diff --git a/LittleShop/Program.cs b/LittleShop/Program.cs index 3e13bfe..8adb643 100644 --- a/LittleShop/Program.cs +++ b/LittleShop/Program.cs @@ -288,7 +288,11 @@ builder.Services.AddCors(options => corsBuilder => { var allowedOrigins = builder.Configuration.GetSection("CORS:AllowedOrigins").Get() - ?? new[] { "https://littleshop.silverlabs.uk" }; + ?? new[] { + "https://littleshop.silverlabs.uk", + "https://admin.dark.side", + "http://admin.dark.side" + }; corsBuilder.WithOrigins(allowedOrigins) .AllowAnyMethod()