hugo-dead-simple
hugo-dead-simple copied to clipboard
URL to /tags breaks with localhost
Hello,
When running the website locally and using the "T" key for tags, the redirection does not work.
The path to /tags is hardcoded to https and does not have a port.
https://github.com/barklan/hugo-dead-simple/blob/2386d86b76ef53ee90c583602b52445b3c472e98/layouts/partials/footer_scripts.html#L21
I used this snippet to workaround this issue:
window.location.href = `${location.origin}/tags`;
If possible, please test and upstream this change.
Thank you for your time.