diff --git a/examples/imageviewer/webApp/build.gradle.kts b/examples/imageviewer/webApp/build.gradle.kts index 4d3f358ddc..52f28985ef 100644 --- a/examples/imageviewer/webApp/build.gradle.kts +++ b/examples/imageviewer/webApp/build.gradle.kts @@ -26,16 +26,17 @@ kotlin { wasmJs { moduleName = "imageviewer" browser { - commonWebpackConfig { - devServer = (devServer ?: KotlinWebpackConfig.DevServer()).apply { - static = (static ?: mutableListOf()).apply { - // Serve sources to debug inside browser - add(rootDirPath) - add(rootDirPath + "/shared/") - add(rootDirPath + "/webApp/") - } - } - } + // TODO: uncomment when https://youtrack.jetbrains.com/issue/KT-68614 is fixed (it doesn't work with configuration cache) +// commonWebpackConfig { +// devServer = (devServer ?: KotlinWebpackConfig.DevServer()).apply { +// static = (static ?: mutableListOf()).apply { +// // Serve sources to debug inside browser +// add(rootDirPath) +// add(rootDirPath + "/shared/") +// add(rootDirPath + "/webApp/") +// } +// } +// } } binaries.executable() }