Использую команду ng build, получаю dist проекта, но внтури не хватает папки build, из за чего в место проекта открывается белый экран. Подскажите в чем может быть причина?
Нет там никакой папки build, получаешь папку dist и внутри него index.html со всеми скриптами рядом, если тебе для деплоя, то дальше используешь nginx или apache и указываешь путь к этому index.html в конфиге своего сервера. Или ты спутал с ng serve?
If you copy the files into a server sub-folder, append the build flag, --base-href and set the appropriately.
For example, if the index.html is on the server at /my/app/index.html, set the base href to <base href="/my/app/"> like this.
content_copy
ng build --base-href=/my/app/
You'll see that the <base href> is set properly in the generated dist/index.html.
If you copy to the server's root directory, omit this step and leave the <base href> alone.