well, so if we want to have a good (in terms of SE...
# compose-web
p
well, so if we want to have a good (in terms of SEO and performance) web, we need to build web UI separately 😐
d
Perhaps - maybe question back at you: I've always wondered if a Canvas-rendered page couldn't trick SEO somehow into seeing the metadata or content it's looking for.
Are SEO methods so optimised around real, visible DOM pages that a Canvas rendered one can't be made compatible with their discovery methods?
p
Unfortunately, I don’t have enough knowledge with SEO to answer this question, say I have the same thought
But not only SEO, I come from Flutter Web, and the bundle is big, when first load, it takes long time
This is a part of SEO I guess, but also performance
b
Not entirely separately. You can still share all your compose state management and utilities, which is a big chunk of ui layer already. Layout is the only thing that needs a separate implementation on compose-web
👍 1
p
Thanks @Big Chungus