Disable spring devtools in prod

This commit is contained in:
2025-04-28 23:57:16 +03:00
parent a790b47420
commit 1e4d963fbd

View File

@@ -55,3 +55,10 @@ spotless {
ktfmt("0.54").kotlinlangStyle() ktfmt("0.54").kotlinlangStyle()
} }
} }
jib {
container {
// disable spring devtools
jvmFlags = listOf("-Dspring.devtools.restart.enabled=false")
}
}