diff --git a/src/Hospitality.Backend/Program.cs b/src/Hospitality.Backend/Program.cs index 0fd125b..6b45e09 100644 --- a/src/Hospitality.Backend/Program.cs +++ b/src/Hospitality.Backend/Program.cs @@ -67,9 +67,13 @@ builder.Services.AddCors(options => { options.AddPolicy("AllowFrontend", policy => { - policy.WithOrigins("http://localhost:5173") - .AllowAnyHeader() - .AllowAnyMethod(); + policy.WithOrigins( + "http://localhost:5173", + "https://hospitality-dev.theriise.net", + "https://hospitality.theriise.net" + ) + .AllowAnyHeader() + .AllowAnyMethod(); }); });