Support the ongoing development of Laravel.io →
posted 5 years ago
Mix

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.

Last updated 2 years ago.
0

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) {}

Last updated 5 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

iign iign Joined 23 Mar 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.