Angular 6-将Angular 6部署到Github Pages错误

时间:2019-02-28 15:30:37

标签: angular github angular-cli angular-cli-ghpages

我想在github中部署我的有角度的项目。

我收到此错误:

pyspark.sql.functions.trim()

我尝试直接在dist中构建,但是什么也没有。 任何帮助都会得到

****编辑:

我尝试运行git remote set-url ..和ngh --no-silent

目前我知道了:

enter image description here

我猜这与dist文件夹有关:

'C:\\Users\\user\\Desktop\\Yaffa\\todo-list\\dist\\index.html'

但是我跑了ngh --dir=dist/todo-list
并且在angular.json文件中具有:"outputPath": "dist/todo-list",

所以我不能弄错了什么

2 个答案:

答案 0 :(得分:0)

尝试一下。

1)首先通过git remote set-url ..

设置原点

2)使用ngh --no-silent运行,它将发布到git origin

答案 1 :(得分:0)

经过大量搜索。

我所做的是:

  1. 我更新了git版本(这有助于解决“ fatal: HttpRequestException encountered”错误)。
  2. 我在angular.json中将行更改为:"outputPath": "dist/",然后将所有文件直接复制到dist文件夹。
  3. 在cmd中运行:

    ngh setup 
    ngh --no-silent --dir=dist/
    

希望这是帮助