how to change the dist-folder path in angular-cli after 'ng build'

后端 未结 10 556
无人及你
无人及你 2020-12-07 11:27

I would like to use angular-cli with asp.net core and I need to know how I can change the path of the dist folder

10条回答
  •  [愿得一人]
    2020-12-07 12:05

    for github pages I Use

    ng build --prod --base-href "https://.github.io//" --output-path=docs
    

    This is what that copies output into the docs folder : --output-path=docs

提交回复
热议问题