我遇到一些问题,看到我的Angular 5项目的网页主页到GitHub(我目前正在做角度的训练营课程)。我使用节点服务器并使用Git Bash在本地计算机上运行它。当我第一次将它发布到GitHub时,我可以清楚地看到我的项目,然后我添加了一些路由,并且已发布的页面不再出现在第二个版本中。这是因为我只允许GitHub上的一个网站或完全不同的东西。
我的项目可以在https://github.com/black-tomcat-dev/edureka-angular找到但是我看不到已发布的页面@ - > https://black-tomcat-dev.github.io/edureka-angular/此网址不正确。
我采取的步骤如下
1) ng build --prod (to build production mode angular project).
2) npm install -g -angular-cli-gh-pages.
3) git init or if already installed move to next step.
4) git add .
5) git commit -m "first commit"
6) git remote add origin "https://github.com/black-tomcat-dev/"
7) git push -u origin master
8) ng build --prod --base-href="https://black-tomcat-
dev.github.io/edureka-angular"
9) angular-cli-ghpages
步骤9表示已成功发布,但当我打开网址时,网站为空白,并检查脚本是否找不到bundle.css,bundle.js等。
为什么我发布的页面没有提取压缩包?我在构建项目并将其放入dist文件夹时没有任何错误。
在观看index.html的实时版本
时,我遗漏了一些微不足道的事