Wanna quote the SVGs in other site?
How can I quote the generated SVG pictures in other webistes?¶
Related Issues:
Due to some reasons, when you build the static websites, the SVG pictures won't be copied to the /public
folder, which means that if you chose to host Running Page on your own server, it is impossible to quote it.
The Solution is quite simple. You just need to copy them from /assets
to /public/static
folder.
You can do it manually, or using one command line.
Example:
cp -r ./assets/* ./public/static
If you are using Github Pages, follow this feat: add copy svg copy command by Mayandev · Pull Request #130 · yihong0618/running_page (github.com) is also a great way.