Hi guys, I have a problem with adding Bootstrap 4 (4.0.0-beta) to my meteor project. Actually it says “Bootstrap dropdown require Popper.js” because bootstrap expects Popper global variable. Maybe there are any other ways to do this or anyone solved this already?
Here is example of my code.
import Popper from 'popper.js'; //popper.js is a package in node_modules
window.Popper = Popper;
import 'jquery';
console.log(Popper);
import 'bootstrap'
Meteor.startup(() => {
~~~~
});