Replies: 2 comments 2 replies
-
Can you use the non minified CDN version and see if you can get better feedback? |
Beta Was this translation helpful? Give feedback.
-
Update: after uninstalling and reinstalling alpinejs using
I had tried this before as well but without any luck. I ran Alpine is an amazing project. Thanks for everything you do. |
Beta Was this translation helpful? Give feedback.
-
Hey All,
I recently needed to update to the latest version of Alpine, so I followed the recommended steps and removed it from
npm
and loaded it in the<head>
of my pages, using:<script defer src="https://unpkg.com/alpinejs@3.0.6/dist/cdn.min.js"></script>
After I made this switch, I started getting A LOT of error messages in the console. When the page initially loads, I get
and I also get 21 of these:
cdn.min.js:5 Uncaught (in promise) TypeError: l is not a function at cdn.min.js:5
When I trigger a Livewire event to reset some values on the page, I get dozens of these:
cdn.min.js:5 Uncaught (in promise) {isFromCancelledTransition: true}
and then another 21 of
cdn.min.js:5 Uncaught (in promise) TypeError: l is not a function at cdn.min.js:5
, followed by another lone instance ofcdn.min.js:5 Uncaught (in promise) TypeError: l is not a function at cdn.min.js:5
. None of my Livewire elements work and the page does not function.When I switch back to using
npm
, I have no problems. Anyone else experience this?Livewire: 2.5.1
Alpine: 3.0.6
Beta Was this translation helpful? Give feedback.
All reactions