Here's repro: https://github.com/Idered/vitesse-motion-ssg-bug
<div
v-motion
:initial="{
opacity: 0,
y: 100,
}"
:enter="{
opacity: 1,
y: 0,
}"
>
Motion
</div>
is compiled to
but it should be
<div style="opacity: 0; transform: translateY(100px);">Motion</div>