2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/appsettings.development.json
Ben Parsons fc8149dcca Fix Dev Proxy
Setup User Secrets for config
2024-05-05 23:02:48 +10:00

29 lines
567 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Information",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore": "Information"
}
},
"ReverseProxy": {
"Routes": {
"spaDevRoute": {
"ClusterId": "spaDevCluster",
"Match": {
"Path": "{**catch-all}"
}
}
},
"Clusters": {
"spaDevCluster": {
"Destinations": {
"spaDevServer": {
"Address": "http://localhost:5173"
}
}
}
}
}
}