Hey! This only relates to Mix (or Webpack perhaps). So I hope this is a good place to post this. If not, please let me know.
I'm using Mix to import a few scripts from a WordPress theme. For some reason I can import a few libs from node_modules, but not Bootstrap.
import 'flickity';
import 'bootstrap';
(function($) {
var flkty = new Flickity('.posts-carousel'); // This also not working
console.log('Bootstrap loaded?', (typeof $().modal == 'function'))
$('#redirectModal').modal();
})(jQuery)
That runs Flickity correctly but not BS. Any ideas why this might happen?
I used this post as a reference to build the structure, so that is pretty much my config: https://junaidqadir.com/wordpress-theme-using-timber-bootstrap/
Update: Flickity is not working either. I was initializing Flickity through html data-attributes. So it is indeed bundled, but not available at that point? I'm really lost here.
hi, did you find a solution? is because of Jquery, i had a same problem, try this on you webpack.mix.js
mix.autoload({ jquery: ['$', 'window.$', 'window.jQuery'] });
and on resources/js/bootstrap.js this (only change the "window" to "global"):
try { window.Popper = require('popper.js').default; global.$ = global.jQuery = require('jquery'); require('bootstrap'); } catch (e) {}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community