我有一个webpack应用程序,我正在使用laravel elixir。在这个应用程序中,我有一个bootstrap.js
文件用于初始化我的所有库。这是:
window._ = require('lodash');
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for JavaScript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
window.$ = window.jQuery = require('jquery');// $ui = require("jquery-ui");
/**
* import twitter bootstrap js library
*/
require('bootstrap-sass');
/**
* import jquery ui
*/
require('jquery-ui-bundle');
/**
* import jquery datatables
*/
require('datatables.net');
/**
* import select2
*/
require('select2'); // globally assign select2 fn to $ element
/**
* import d3
*/
require('d3');
/**
dropdowns
*/
require('tether');
require('tether-drop');
唯一的问题是,当我去构建这个时,我得到Error: Can't resolve 'tether-drop'
。我该如何解决这个问题?
谢谢!
答案 0 :(得分:-1)
要使用系绳,您需要在窗口上使用它。
global.Tether = require('tether');
现在,您可以将其与其他库一起使用,例如,使用bootstrap @ 4。不要使用import。
require('bootstrap');