Files
Umbraco-CMS/src/Umbraco.Web.UI.NetCore/appsettings.Development.json

51 lines
1.0 KiB
JSON
Raw Normal View History

2020-02-18 08:32:06 +01:00
{
"Serilog": {
"MinimumLevel": {
"Default": "Information"
},
"WriteTo": [
{
"Name": "Async",
"Args": {
"configure": [
{
"Name": "Console"
}
]
}
}
]
},
2020-08-24 14:15:53 +02:00
"Umbraco": {
"CMS": {
"Global": {
"Smtp": {
//"From": "your@email.here",
//"Host": "localhost",
// "Port": "25"
}
},
"Hosting": {
"Debug": true
},
"RuntimeMinification": {
"useInMemoryCache": true,
"cacheBuster": "Timestamp"
},
"RichTextEditor": {
"Commands": [
{
"Alias": "fullscreen",
"Name": "Full Screen",
"Mode": "All"
}
],
"Plugins": [
"fullscreen"
]
2020-08-24 14:15:53 +02:00
}
}
2020-02-18 08:32:06 +01:00
}
}