无法从 conf 文件中删除一行
Can't remove a line from conf file
当我构建我的 ktor 项目时,它失败了,它告诉我有一行导致失败。该行位于 application.conf 文件中:
ktor {
development = true
deployment {
//the problem is with "heroku logs --tail"
port = 8080heroku logs --tail
port = ${?PORT},
watch = [ classes, resources ]
}
application {
modules = [ com.example.ApplicationKt.module ]
}
}
当我尝试删除该行然后重新构建项目时 returns。
我怎样才能删除它?
我已经通过不删除整个句子而是删除其中的一部分然后构建服务器的方式解决了我的问题。然后移除另一部分并重新构建服务器。该行将不再 return 返回。
当我构建我的 ktor 项目时,它失败了,它告诉我有一行导致失败。该行位于 application.conf 文件中:
ktor {
development = true
deployment {
//the problem is with "heroku logs --tail"
port = 8080heroku logs --tail
port = ${?PORT},
watch = [ classes, resources ]
}
application {
modules = [ com.example.ApplicationKt.module ]
}
}
当我尝试删除该行然后重新构建项目时 returns。 我怎样才能删除它?
我已经通过不删除整个句子而是删除其中的一部分然后构建服务器的方式解决了我的问题。然后移除另一部分并重新构建服务器。该行将不再 return 返回。