voidkitty/VoidCat/appsettings.json

19 lines
373 B
JSON
Raw Normal View History

2022-01-25 16:17:48 +00:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
2023-08-24 09:51:07 +00:00
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
2022-01-25 16:17:48 +00:00
}
},
"AllowedHosts": "*",
"Settings": {
2023-05-22 11:53:44 +00:00
"SiteUrl": "https://localhost:7195",
"DataDirectory": "./data",
"CorsOrigins": [
2023-08-24 09:51:07 +00:00
"http://localhost:3000",
"http://localhost:8080"
]
2022-01-25 16:17:48 +00:00
}
}