我正在尝试将Bootstrap 4添加到Aurelia
. 我只能让CSS
工作,但bootstrap.js
需要Tether
,我不能把它包括在内,因为我在控制台中不断收到这个错误:
Bootstrap tooltips require Tether
我尝试了一些东西
"jquery",
"Tether",
{
"name": "tether",
"path": "../node_modules/tether/dist",
"main": "js/tether.min",
"exports": "Tether",
"resources": [
"css/tether.css"
]
},
{
"name": "bootstrap",
"path": "../node_modules/bootstrap/dist",
"main": "js/bootstrap.min",
"deps": ["tether", "jquery"],
"exports": "$",
"resources": [
"css/bootstrap.css"
]
},
它确实捆绑了,但它仍然抱怨缺少Tether
. 我读到另一个堆栈答案 ,我必须available globally which could be done via
用这个来制作Tether requirejs.config.js`
define(['lib/tether.min'], function(tether) {
window.Tether = tether;
});
但是没有这样的配置Aurelia
。