We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if canonifyURLs = true is set in config.toml, baseURL is not used to get index.json. So the search doesn't work.
canonifyURLs = true
config.toml
baseURL
index.json
baseURL = "https://group.pages-gitlab.mydomain.com.br/techblog/"
Browser console: VM1586:1 GET https://group.pages-gitlab.mydomain.com.br/techblog/index.json 404 (Not Found)
The search works with canonifyURLs = true and the baseURL is /something.
The text was updated successfully, but these errors were encountered:
Changing from .RelPermalink to .Permalink solves:
.RelPermalink
.Permalink
FeelIt/layouts/partials/assets.html
Line 31 in 92084dc
Tested with canonifyURLs = true and canonifyURLs = false (hugo default).
canonifyURLs = false
Sorry, something went wrong.
No branches or pull requests
Describe the bug
if
canonifyURLs = true
is set inconfig.toml
,baseURL
is not used to getindex.json
. So the search doesn't work.baseURL = "https://group.pages-gitlab.mydomain.com.br/techblog/"
Browser console: VM1586:1 GET https://group.pages-gitlab.mydomain.com.br/techblog/index.json 404 (Not Found)
Expected behavior
The search works with
canonifyURLs = true
and the baseURL is /something.Build Environment
The text was updated successfully, but these errors were encountered: