Angular Amplify
amplify publish
を行なった場合にデプロイが終わり、配信ページを訪れるとforbidden になる。
原因は、初期設定でbuild先がdist/プロジェクト名
になっているから。
angular.json
内のbuildオプションを編集します。
{ "projects": { "ng-chat": { "architect": { "build": { "options": { "outputPath": "dist/ng-chat"
これを、dist
のみに編集します。
{ "projects": { "ng-chat": { "architect": { "build": { "options": { "outputPath": "dist"