Before compose `1.6.10-rc02` the web was experimen...
# compose-web
r
Before compose
1.6.10-rc02
the web was experimental and
skiko.*
files were only generated when
experimental { web.application {} }
was defined. Now web is in alpha, the experimental configuration is deprecated and
skiko.*
files are always generated in
processedResources
and
dist
folder. But what if I don't want skiko - how can I disable it?
m
If you don’t want skiko, that means that you don’t want Compose UI right? AFAIK by removing Compsoe UI dependencies you should get rid of skiko.
r
I don't have compose ui dependency and skiko files are still generated.
kodee frustrated 1
Perhaps someone see some kind of option here? :)
This seems to work:
Copy code
tasks.withType<org.jetbrains.compose.web.tasks.UnpackSkikoWasmRuntimeTask> {
    enabled = false
}
🙌 3
2