Bootstrap

Bootstrap - Optimize(최적화)

고코모옹 2021. 5. 29. 21:10

https://getbootstrap.com/docs/5.0/customize/optimize/

 

Optimize

Keep your projects lean, responsive, and maintainable so you can deliver the best experience and focus on more important jobs.

getbootstrap.com


// import bootstrap from 'bootstrap/dist/js/bootstrap.bundle';
import Dropdown from 'bootstrap/js/dist/dropdown';

const dropdownElementList = [].slice.call(
  document.querySelectorAll('.dropdown-toggle')
);
dropdownElementList.map(function (dropdownToggleEl) {
  return new Dropdown(dropdownToggleEl);
});