On Windows, search result URLs return a 404 error if filenames have case differences.
I fixed this by modifying src\layouts\helpers\SearchResult.tsx, adding .toLowerCase() to ensure consistent URL casing:
href={/${item.slug.toLowerCase()}}
Please consider implementing this fix for better Windows compatibility.
On Windows, search result URLs return a 404 error if filenames have case differences.
I fixed this by modifying src\layouts\helpers\SearchResult.tsx, adding .toLowerCase() to ensure consistent URL casing:
href={
/${item.slug.toLowerCase()}}Please consider implementing this fix for better Windows compatibility.