1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Error: Directory 'dist' for Hosting does not exist.エラーについて

Posted at

エラーの概要

・ChatAIの回答
このエラー「Error: The process '/usr/local/bin/npx' failed with exit code 1」は、npxコマンドの実行が失敗したことを示しています。

ビルドステップの確認:
GitHub Actionsのワークフローファイルに以下のようなステップがあることを確認してください:

text

- run: npm ci && npm run build

→私の場合は「npm run build」を実行していないのが、原因だったようです。

firebase.jsonの修正:
firebase.jsonファイルを以下のように修正してみてください:

{
  "hosting": {
    "public": "dist",
    ...
  }
}

所感

firebaseを使ったdeployが初めてのため、上記エラー以外にも発生して大変だった。
他のエラーや起こった事象に対する記事についても追加予定です。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?