Hi, I'm newbie trying to use KMP to build a full stack web app using Ktor in jvmMain as back-end and Kotlin-React in jsMain as front-end,
How can I add all jsMain source set to ktor watch path to enable automatic reload .
Copy code
fun main() {
embeddedServer(
Netty, watchPaths = listOf("jvmMain"), port = 8080,
module = Application::myModule
).start(wait = true)
}