Hi, I'm using Hugo(v0.49) with your theme(https://github.com/luizdepra/hugo-coder/commit/9dc5dc0fd02f2fe219bdad480e1f8d244396218a).
When navigating the website using hugo server everything is fine, but if I try to use the production website built by hugo the CSS is not loaded and the following error message is shown:

Is this a Hugo problem or a theme problem?
You can take a look at my configuration here: https://gitlab.com/systemallica/systemallica.gitlab.io
Cheers
Will you access the site from https://systemallica.gitlab.io/ address?
If so, the problem should be the baseURL that is different from the address you are using in the configuration.
No, I will access it from https://andres.reveronmolina.me. Anyway, the problem occurs if I access it from https://andres.reveronmolina.me, from https://systemallica.gitlab.io or even if I try to open the index.html locally.
Understood. The problem is the base tag from baseof.html.
It seems your use case (more than one address) is kind of common. So, could you please make a PR to fix this problem?
I'm sorry, but I don't see what the solution is. What changes should I make?
EDIT: strangely enough, all works fine now (https://systemallica.gitlab.io/, https://andres.reveronmolina.me/ and even https://reveronmolina.me/). Maybe it was a GitLab problem.
Hey, I believe I'm getting the same issue when trying to deploy using Netlify. I'm currently running Hugo v 0.55.6, and have that specified in my _netlify.toml_ to ensure the builds are the same. CSS appears to deploy on a local preview (e.g. hugo server), but any deploy on the site appears to not load a specified CSS.
My specifications for the base URL are as followed:
baseurl = "http://www.jaredtconnor.com/"
So I don't believe it should be a domain routing issue for the CSS. I've followed this trouble shooting and can't seem to locate the issue. I've seen comments that it could be Netlify's issue with loading SCSS.
Any thoughts?
Repo is here
Debug your site I got this:

It seems you're serving over https but your site is configured with http.
I think fixing baseurl to https will do the trick. You can also override the baseurl via netlify.toml, like I'm doing here.
Yeah that worked, thank you. Rebuilt the netlify.toml to specify https. Build's correctly now.
Most helpful comment
Debug your site I got this:
It seems you're serving over
httpsbut your site is configured withhttp.I think fixing
baseurltohttpswill do the trick. You can also override thebaseurlvianetlify.toml, like I'm doing here.