Search code examples
vue.jsvuepress

IMG in vuepress is not showing


I try to learn Vuepress and I need to know how to add image to document.

I tried code from documentation on vuepress ![An image](images/image.png) and can't see nothing

Tree

Code I tried to use in frontend.md and is really simple

# Title

![An image](images/image.jpg)

Here is result of that code

result


Solution

  • It's recommended that you reference any asset using relative URLs. You can move your images into the content folder:

    content
      frontend.md
      assets
        images
          image.jpg
    

    Then reference using relative URL in frontend.md:

    ![An image](./assets/images/image.jpg)