Is there a way to have seperate confs for dev and ...
# ktor
r
Is there a way to have seperate confs for dev and prod? For example, I have this, but would like to turn off autoreload in prod:
Copy code
ktor {
    deployment {
        port = 9091
        autoreload = true
    }

    application {
        modules = [ com.befound.AppMainKt.main ]
    }
}