* Clear out some non-fn references to Algolia * Update .github/workflows/dry-run-sync-search-indices.yml Co-authored-by: James M. Greene <JamesMGreene@github.com> * Update contributing/search.md Co-authored-by: James M. Greene <JamesMGreene@github.com> Co-authored-by: James M. Greene <JamesMGreene@github.com>
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
export const maxRecordLength = 8000
|
|
export const maxContentLength = 5000
|
|
export const namePrefix = 'github-docs'
|
|
|
|
export default {
|
|
// records must be truncated to avoid going over 10K limit
|
|
maxRecordLength,
|
|
maxContentLength,
|
|
namePrefix,
|
|
}
|