i currently face the following issue when using hugos builtin sass pipeline
My current config (simplified)
baseURL: https://www.ab24.de
theme:
- my-hugo-base
Languages:
de:
baseurl: https://www.ab24.de/f1/
language: de-DE
at:
baseURL: https://www.ab24.at/f2/
language: de-AT
generates this output with folders in the baseurl
<link rel="stylesheet" id="relparmalink" href="/f2/scss/main.css">
<link rel="stylesheet" id="permalink" href="https://www.ab24.at/f2/scss/main.css">
<link id="testforpermalink" href="https://www.ab24.de/f1/">
when using no folder (in the basurl fo the configfile - for testing purpose) the output is this
<link rel="stylesheet" id="relparmalink" href="/scss/main.css">
<link rel="stylesheet" id="permalink" href="https://www.ab24.at/scss/main.css">
<link id="testforpermalink" href="https://www.ab24.de/">
so if someone would need no path the relPermalink would work. But i am building a subsection of the page with hugo (sitting in paths for 13 langs > 100k Pages) this is no option for us. Therefor it would be cool if the ressource (which gets built in all langsfolders) could obey the permalink of the baseurl. Server Mode behaves the same way and takes the url of the first built lang-version
Env
Hugo Static Site Generator v0.60.1/extended darwin/amd64 BuildDate: unknown
GOOS="darwin"
GOARCH="amd64"
GOVERSION="go1.13.4"
Testrepo: https://github.com/mhuberas24/hugotestsetup to easily reproduce behaviour