我当前的Angular 2应用,在ng build prod
之前,我需要进入我的index.html文件并将基本标记从<base href="/">
更改为<base href="/myExampleApp/">
但是如您所知,我需要将本地版本更改回“/”,因为通过更改基本标记的本地版本,我将破坏本地提供的应用程序。
我可以使用优雅的方式ng build prod baseTag='xyz'
吗?
感谢。
答案 0 :(得分:1)
# Sets base tag href to /myUrl/ in your index.html
ng build --base-href /myUrl/
ng build --bh /myUrl/