My webpack application, which I am using with Laravel Elixir, includes a 'bootstrap.js' file for initializing all libraries. Here is the content of the file:
window._ = require('lodash');
/**
* We'll load jQuery and the Bootstrap jQuery plugin to support
* JavaScript-based Bootstrap features like modals and tabs. This
* code can be customized based on your application's needs.
*/
window.$ = window.jQuery = require('jquery');
require('bootstrap-sass');
require('jquery-ui-bundle');
require('datatables.net');
require('select2');
require('d3');
require('tether');
require('tether-drop');
The problem I'm facing is that when I try to build this, I receive an error message saying:
Error: Can't resolve 'tether-drop'
. How can I resolve this issue?
Thank you in advance!