Files
react-dotnet-framework/backend/appsettings.json
2026-08-03 04:23:32 -04:00

23 lines
432 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Cors": {
"AllowedOrigins": [
"http://localhost:3000"
]
},
"RateLimiting": {
"PermitLimit": 100,
"WindowSeconds": 60,
"QueueLimit": 0
},
"Persistence": {
"Provider": "InMemory"
}
}