Hi guys! I'm moving my mpp to the "new" plugin: - ...
# multiplatform
s
Hi guys! I'm moving my mpp to the "new" plugin: - Android compiles ok - Backend compiles ok - JS compiles ok but can't find the common module when I start the app This is my config: -- common gradle:
Copy code
targets {
        ...
        js()
}

js().compilations.main.defaultSourceSet {
            dependencies {
                implementation "io.ktor:ktor-client-js:$ktor_version"
                implementation "io.ktor:ktor-client-json-js:$ktor_version"

                implementation "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
                implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime-js:$serialization_version"
            }

        }