I’m getting an error… Any ideas where I might have...
# compose-web
c
I’m getting an error… Any ideas where I might have messed up?
Copy code
* What went wrong:
Plugin [id: 'org.jetbrains.compose', version: '1.4.0-dev-wasm08'] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'org.jetbrains.compose:org.jetbrains.compose.gradle.plugin:1.4.0-dev-wasm08')
Ahh, turns out I needed to add this to `settings.gradle.kts`:
Copy code
pluginManagement {
    repositories {
        gradlePluginPortal()
        maven("<https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental>")
    }
}
👍 1