You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are [manually bundling Livewire and Alpine](https://livewire.laravel.com/docs/installation#manually-bundling-livewire-and-alpine), you will also need to import the Livewire Forms script:
31
+
If you are [manually bundling Livewire and Alpine](https://livewire.laravel.com/docs/installation#manually-bundling-livewire-and-alpine), you will also need to import the Livewire Forms scripts.
32
+
33
+
### Full bundle
34
+
35
+
The `livewire-forms.js` script is the full bundle and contains all the forms logic and external libraries like Filepond.
32
36
33
37
```diff
34
38
import { Livewire, Alpine } from '../../vendor/livewire/livewire/dist/livewire.esm';
35
39
import Clipboard from '@ryangjchandler/alpine-clipboard'
If you want more control, you may import individual scripts instead. This can be useful if you don't want to use some of the provided integrations like Filepond. At the bare minimum you should import `form.js`.
50
+
51
+
```diff
52
+
import { Livewire, Alpine } from '../../vendor/livewire/livewire/dist/livewire.esm';
53
+
import Clipboard from '@ryangjchandler/alpine-clipboard'
0 commit comments