Disable json pretty formating

This commit is contained in:
Hubert Van De Walle 2020-04-24 02:08:42 +02:00
parent 6e4fa89e85
commit 1e3a341289

View File

@ -7,8 +7,6 @@ import io.ktor.jackson.*
fun Application.contentNegotiationFeature() { fun Application.contentNegotiationFeature() {
install(ContentNegotiation) { install(ContentNegotiation) {
jackson { jackson {}
enable(SerializationFeature.INDENT_OUTPUT)
}
} }
} }