Fase 3: Inicio de Publicación y Web Pública - Wizard de Publicación (WizardApp + Frontend Setup + CORS)

This commit is contained in:
2025-12-17 13:45:14 -03:00
parent dff7a377a4
commit f1bd25ea79
28 changed files with 4336 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ builder.Services.AddCors(options =>
options.AddPolicy("AllowFrontend",
policy =>
{
policy.WithOrigins("http://localhost:5173")
policy.WithOrigins("http://localhost:5173", "http://localhost:5174", "http://localhost:5175")
.AllowAnyHeader()
.AllowAnyMethod();
});