We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a2c3ca commit e5ba7eeCopy full SHA for e5ba7ee
composeApp/build.gradle.kts
@@ -20,11 +20,8 @@ kotlin {
20
commonWebpackConfig {
21
outputFileName = "composeApp.js"
22
devServer = (devServer ?: KotlinWebpackConfig.DevServer()).apply {
23
- static = (static ?: mutableListOf()).apply {
24
- // Serve sources to debug inside browser
25
- add(rootDirPath)
26
- add(projectDirPath)
27
- }
+ static(rootDirPath)
+ static(projectDirPath)
28
}
29
30
gradle/libs.versions.toml
@@ -1,7 +1,7 @@
1
[versions]
2
androidx-lifecycle = "2.9.6"
3
coil3 = "3.3.0"
4
-composeMultiplatform = "1.10.0-rc01"
+composeMultiplatform = "1.10.0-alpha03"
5
haze = "1.7.1"
6
kotlin = "2.2.21"
7
ksp = "2.3.3"
0 commit comments