无法使用Angular 2 CLI构建

时间:2016-12-18 06:05:24

标签: javascript html angular angular-cli

使用Angular CLI构建项目后,我继续使用inline,styles bundle.js和main bundle.js获取404:Cannot GET

在index.html的底部:

<script type="text/javascript" src="inline.js"></script>
<script type="text/javascript" src="styles.bundle.js"></script>
<script type="text/javascript" src="main.bundle.js"></script>

这些文件与index.html在同一个文件夹中,包含所有有角度的2个好东西。当我将文本复制到相应的脚本标签中时,它可以正常工作。

1 个答案:

答案 0 :(得分:3)

感谢@Johan Blomgren的回答。添加此修复它:

<base href="index.html">