docs.page
docs.page copied to clipboard
bug: `<img>` & `<video>` doesn't work with assets in relative paths
See title.
I was using <img src="/assets/image.png"/>
which didn't work.
Upon reading the documentation really carefully I noticed that it only mentioned the <Image>
tag and changing it to that worked.
Is there a particular reason why the Mapping of <img>
is not working?
Going forward I think there could be two ways:
-
is supported with relative paths
- A callout is added to the docs hinting that it has to be
<Image>
and not<img>
. Happy to add that respective callout to the docs if desired :)