2
在角應用程序的構建過程中,我想更新內部index.html
使用咕嚕更新基本href
的<base href="/app-dev/">
標籤<base href="/app/">
有沒有辦法用usemin
來更新這個標籤(現在,我使用它更新鏈接到JS和CSS)?如果沒有,我應該用什麼咕task任務來做到這一點?
在角應用程序的構建過程中,我想更新內部index.html
使用咕嚕更新基本href
的<base href="/app-dev/">
標籤<base href="/app/">
有沒有辦法用usemin
來更新這個標籤(現在,我使用它更新鏈接到JS和CSS)?如果沒有,我應該用什麼咕task任務來做到這一點?
我用咕嚕-processhtml太像這樣
在你的發言權index.html文件
<!-- build:[href]:build /path/you/want/ -->
<base href="/~myusername/myapp/public/" />
<!-- /build -->
在Gruntfile.js添加任務的配置,像這樣
processhtml: {
options: {
//
},
build: {
files: {
'dist/index.html':['public/index.html']
}
}
}
和安裝npm包當然!
npm install grunt-processhtml --save-dev