I have this in config.toml
:
baseURL = "https://my-username.github.io/blog/"
and there is a static file at static/img/foo.png
.
Now, in content/posts/bar.md
, I have the following content:
---
title: "Bar"
---

The picture isn't showing after I started the hugo server
, so I inspected elements, and found out that Hugo generated the following URL for it:
http://localhost:1313/blog/posts/bar/img/hireme.png
This is not what I expect; it should be
http://localhost:1313/blog/img/hireme.png
When I use 
, the picture is displayed correctly, but this is quite strange: /blog/
is part of baseURL
, why do I need to type it again?
I think you should use
<base>
tag to make baseURL for static files.Add the
<base>
tag into<head>
:And then you can insert image in post like this:
References: