> ## Documentation Index
> Fetch the complete documentation index at: https://algolia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# initialIndexSettings

> Settings for the index created during the first crawl.

* **Type**: `object`

The initial index settings are only applied during the first crawl of an index.
After this, these settings won't be re-applied.
This prevents you from overriding changes you made, for example, in the Algolia dashboard.

This setting is an object with index names as keys and their
[index settings](/doc/api-reference/api-parameters) as values.

## Examples

```js JavaScript icon=code theme={"system"}
{
  initialIndexSettings: {
    myIndexName: {
      searchableAttributes: ["title"],
    },
    mySecondIndexName: {
      searchableAttributes: ["title"],
    },
  },
}
```
