我試圖在我的Aurelia CLI項目中引入Bootstrap,並且CSS和JS工作正常。Aurelia CLI包括Bootstrap字形
我唯一的問題是圖形需要加載字體文件。
我使用此配置:
"dependencies": [
{
"name": "bootstrap",
"path": "../node_modules/bootstrap/dist",
"main": "js/bootstrap.min",
"deps": ["jquery"],
"exports": "$",
"resources": [
"css/bootstrap.min.css",
"fonts/glyphicons-halflings-regular.woff2"
]
}
]
但我得到含有該線的錯誤:
路徑:「C:\用戶\好色\文件\形式\ node_modules \引導\ DIST \ Fonts \中glyphicons,半身人,regular.js'
所以,即使我包括.woff2
文件,奧裏利亞嘗試將文件導入的JS文件。我能做些什麼來完成這項工作? CSS工作正常。
我會玩這個和檢查r快速。這可能是你需要提交一個GitHub問題。 –