I have a kotlin multiplatform project with compose...
# multiplatform
v
I have a kotlin multiplatform project with compose multiplatform currently only for iOS and Android I have multiple child modules inside :shared and have compose compiler enabled in all Can i add web target using Kotlin/JS, but use Vue.js for it and not CMP? Will compose compiler enabled submodules create any issue?
m
No it should work fine, just try to avoid importing Compose UI dependencies from web target to keep it lightweight.
v
Thanks