# Javascript

### Config Alpine @entangle.defer

Some field are deferred by default. You can override it with: `->deferEntangle(bool $state = true)`&#x20;

Fields that doesn't use Alpine.entangle, can still be deferred with: `->wire('defer')`

```php
//config/tall-forms
'wire' => 'wire:model',
'defer-entangle' => true,
```

### Config cdn links

Include cdn links for fields based on third party scripts, or bundle them (manually) with your app.js? You can override on individual fields with `->includeExternalScripts(bool $state = true)`

```php
//config/tall-forms
'include-external-scripts' => true,
```
