Search code examples
javascriptbootstrap-4mime

MIME type mismatch Bootstrap/Scroll-out


I'm designing a website on WordPress and I'm facing two errors to load bootstrap.js and ScrollOut.js : - Blocked resources due to MIME type mismatch

wp_enqueue_style('bootstrapjs', 'https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js', array(), '4.4.1', 'all');
wp_enqueue_style('scrolloutjs', 'https://unpkg.com/scroll-out/dist/scroll-out.min.js', array(), '2.2.8', 'all');

Others js are loaded properly (fancybox, and my custom js).

How can I fix this please ?

Thank you


Solution

  • You're using wp_enqueue_style instead of wp_enqueue_script. Sometimes, it's the simple things that mess up our code ;)