disable(Wasm): temporarily deactivate WASM target across modules for stability

Deactivated WebAssembly configurations in relevant modules due to stability concerns with JS compatibility. Updated Gradle scripts to comment out related dependencies and tasks while preserving the initial implementation for future reactivation.
This commit is contained in:
2026-01-09 15:40:40 +01:00
parent 35da070893
commit 02317e6c00
10 changed files with 43 additions and 9 deletions
@@ -28,11 +28,13 @@ kotlin {
}
}
// Wasm enabled by default
// Wasm vorerst deaktiviert
/*
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
wasmJs {
browser()
}
*/
sourceSets {
commonMain.dependencies {
@@ -82,6 +84,7 @@ kotlin {
implementation(libs.ktor.client.js)
}
/*
val wasmJsMain = getByName("wasmJsMain")
wasmJsMain.dependencies {
implementation(libs.ktor.client.js) // WASM verwendet JS-Client [cite: 7]
@@ -91,6 +94,7 @@ kotlin {
implementation(compose.foundation)
implementation(compose.material3)
}
*/
}
}