The way you’d add that to your server process is t...
# ktor
r
The way you’d add that to your server process is to pass the arg to your
application
configuration block:
Copy code
application {
  mainClassName = main_class

  applicationDefaultJvmArgs = listOf(
    "-server",
    "-Djava.awt.headless=true",
    "-Dio.ktor.development=true",
    "-Xms128m",
    "-Xmx256m",
    "-XX:+UseG1GC",
    "-XX:MaxGCPauseMillis=100"
  )
}