Skip to content

Guide

How to use images for production

Because of the build process, the images disappear in production. Therefore, the following solution:

  • Imported images must be placed in the folder docs/public/

For example, if you have an image called test.png, create a folder called testimages and place the image inside.

The path should look like this: docs/public/testimages/test.png

Linking images in a Markdown file:

md
![anyName](path/to/file.png)

//For test.png mentioned above

![test](/testimages/test.png)