You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Algolia for search, and it normalizes URLs by lowercasing (and it's not configurable). So an Algolia search result URL is lowercase, but Vercel is case-sensitive, so Vercel doesn't match the lowercase URL with the typedoc-generated SentenceCase file, and returns a 404.
Suggested Solution
Add a lowercase output option that:
generates lowercase files
changes links to lowercase
The text was updated successfully, but these errors were encountered:
Thanks for pointing that out! Looks like I was mistaken—Algolia's normalization applies to search fields put in the index and query strings, not URLs. I'm not sure why there were lowercase URLs in my index, but after updating to a newer version of Crawler code and reindexing, I have SentenceCase types in my search result URLs.
Feel free to close, unless the lowercase option would be helpful for other use cases.
Problem
I use Algolia for search, and it normalizes URLs by lowercasing (and it's not configurable). So an Algolia search result URL is lowercase, but Vercel is case-sensitive, so Vercel doesn't match the lowercase URL with the typedoc-generated
SentenceCase
file, and returns a 404.Suggested Solution
Add a
lowercase
output option that:The text was updated successfully, but these errors were encountered: