I followed the installation instructions but I continue to receive the js error
can't find variable: swal
bootstrap.js
...
try {
window.Popper = require('popper.js').default;
window.$ = window.jQuery = require('jquery');
require('bootstrap');
require('sweetalert');
} catch (e) {}
...
app.js
require('./bootstrap');
$( document ).ready(function() {
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
});
app.blade
...
@include('sweet::alert')
</body>
Then I run npm run prod
The only way I can get it to work is if I use the CDN....
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
I followed the installation instructions but I continue to receive the js error
bootstrap.js
app.js
app.blade
Then I run
npm run prodThe only way I can get it to work is if I use the CDN....