The ktor documentation mentions not using `watchPa...
# ktor
s
The ktor documentation mentions not using
watchPaths
for production for performance reasons. Is there a flag to indicate production use, or do I need to provide an if block, and provide an empty list for
watchPaths
in production?
c
In production it should be empty or missing
There is no prod flag, you can solve it by using HOCON features such as includes
s
thx