You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The correct image is displayed in the field but the path saved in the image field is ../../../assets/image.jpg instead of the expected src/assets/image.jpg.
Desktop (please complete the following information):
Windows 10
Possible Cause
This might be related in some way to the fact that I have to select the English subfolder "[[workspace]]/src/content/posts/en",
The text was updated successfully, but these errors were encountered:
There is nothing wrong with the path as this is how it needs to be for Astro:
<!-- Local image stored in src/assets/ --><!-- Use a relative file path or import alias -->![A starry night sky.](../assets/stars.png)<!-- Image stored in public/images/ --><!-- Use the file path relative to public/ -->![A starry night sky.](/images/stars.png)<!-- Remote image on another server --><!-- Use the full URL of the image -->![Astro](https://example.com/images/remote-image.png)
Describe the bug
Image selector is saving the wrong path for Astro.
To Reproduce
Steps to reproduce the behavior:
frontmatter.json
to contain the following:src/assets
directoryExpected Behavior
The correct image is displayed in the field but the path saved in the image field is
../../../assets/image.jpg
instead of the expectedsrc/assets/image.jpg
.Desktop (please complete the following information):
Windows 10
Possible Cause
This might be related in some way to the fact that I have to select the English subfolder
"[[workspace]]/src/content/posts/en",
The text was updated successfully, but these errors were encountered: