11 lines
257 B
JavaScript
11 lines
257 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 Algolia's 10K limit
|
|
maxRecordLength,
|
|
maxContentLength,
|
|
namePrefix,
|
|
}
|