mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2024-11-22 08:13:53 +00:00
fixes
This commit is contained in:
parent
28301a92c9
commit
53cf212175
@ -52,8 +52,13 @@ suspend fun main(vararg args: String) {
|
||||
}
|
||||
) {
|
||||
routing {
|
||||
staticFiles("", File("WebApp/build/dist/js/productionExecutable")) {
|
||||
default("WebApp/build/dist/js/productionExecutable/index.html")
|
||||
val baseJsFolder = File("WebApp/build/dist/js/")
|
||||
baseJsFolder.list() ?.forEach {
|
||||
if (it == "productionExecutable" || it == "developmentExecutable") {
|
||||
staticFiles("", File(baseJsFolder, it)) {
|
||||
default("WebApp/build/dist/js/$it/index.html")
|
||||
}
|
||||
}
|
||||
}
|
||||
post("inline") {
|
||||
val requestBody = call.receiveText()
|
||||
|
Loading…
Reference in New Issue
Block a user