LoginSignup
0
0

[uncaughtException] proxyReq.appendHeader is not a function

Posted at

参考

これによると、nodeのバージョンを上げればいいらしい。

// nvmインストール
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
$ export NVM_DIR="$HOME/.nvm"
$ [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
$ [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

// node v20.12.2インストール
$ nvm install --lts --latest-npm

$ nvm use v20
Now using node v20.12.2 (npm v10.5.2)

$ node -v
v20.12.2
  1. v20.12.2になっていることを確認
  2. npm install
  3. npm run dev

これで出なくなる!!

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