# Configuration changes

### Translations in config moved to language files

Translations in `config/tall-forms` have been moved to separate language files. Please read more on the [Translations page ->](https://tina-hammar.gitbook.io/tall-forms/installation/manual-installation/localisation)

### Alpine @entangle.defer, config

There is a **new** config that affects all fields where Alpine entangles the input value. You can override it with the `->deferEntangle(bool $state)` method on individual fields.  (I've had multiple requests that this should be "true" by default...)

***Set it to\*\*\*\* ****`false`**** \*\*\*\*to avoid breaking change.***

```
'defer-entangle' => true, //set to false to avoid breaking change
```

### Config, include external scripts

There is a **new** configuration option to include external CDN links by default. It is set to true by default. The `->includeExternalScript(bool $state=true)` **method has changed**. It now accepts a boolean, that overrides config.

***Set it to\*\*\*\* ****`false`**** \*\*\*\*to avoid breaking change.***

```
'include-external-scripts' => true, //set to false to avoid breaking change
```

### Republish/merge the config files

Don't forget `php artisan config:clear` and `php artisan cache:clear`

```
php artisan vendor:publish --tag=tall-form-config
```
