0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Firebase Deploy がうまくいかない時には npm run build エラー見て

Last updated at Posted at 2023-08-10

firebase init などで firebase のセットアップはすでに完了しているとする。

firebase deploy --only hosting

実行時、デプロイが最後までいかない原因は大抵 npm run build が失敗していることが原因にある。
例えば、src ディレクトリ下の動的ファイル群を dist ディレクトリ下に静的ファイルとしてコンパイルされた js ファイル群を削除することで解決することが多い(エラー内容が以下なら、src/layouts/dashboard/mobile-nav/dist ディレクトリを丸ごと削除してから firebase deploy を実行することをお勧めする)。

src/layouts/dashboard/mobile-nav/dist/index.js
116:19  Error: React Hook "useCssVars" is called in function "exports.MobileNav" that is neither a React function component nor a custom React Hook function. React component names must start with an uppercase letter. React Hook names must start with the word "use".  react-hooks/rules-of-hooks```
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?