Gatsbyビルド時にOutgoingMessage.prototype._headers is deprecatedと怒られる件
はじめに
こんにちは。名探偵コナンの99巻を買って2か月ほど経ちました。まだ読んでいません、筆者です
さて、Gatsbyプロジェクトビルド時になんかエラーが出てたのでそれ対応した話です。
同じエラーが出て困っている方の参考になれば幸いです
エラーはこれ
$ gastby develop
...
...
ERROR
(node:21481) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
(Use `node --trace-deprecation ...` to show where the warning was created)
$ gastby develop
...
...
ERROR
(node:21481) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
(Use `node --trace-deprecation ...` to show where the warning was created)
廃止されたんすか
ほんとだ...廃止されてた
追記
上記リンク踏んで思ったのですが、アンカーリンクが期待通りの動きをしないので、ページ内を DEP0066
で検索して下さい
とりあえず助言通りオプション付けて実行してみた
$ node --trace-deprecation node_modules/gatsby/dist/bin/gatsby develop
...
...
ERROR
(node:23379) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
at module.exports (/home/workspace/node_modules/timed-out/index.js:9:17)
at EventEmitter.<anonymous> (/home/workspace/node_modules/got/index.js:244:5)
at Object.onceWrapper (node:events:476:26)
at EventEmitter.emit (node:events:369:20)
at makeRequest (/home/workspace/node_modules/cacheable-request/src/index.js:94:9)
at /home/workspace/node_modules/cacheable-request/src/index.js:104:14
at runNextTicks (node:internal/process/task_queues:59:5)
at processImmediate (node:internal/timers:437:9)
$ node --trace-deprecation node_modules/gatsby/dist/bin/gatsby develop
...
...
ERROR
(node:23379) [DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
at module.exports (/home/workspace/node_modules/timed-out/index.js:9:17)
at EventEmitter.<anonymous> (/home/workspace/node_modules/got/index.js:244:5)
at Object.onceWrapper (node:events:476:26)
at EventEmitter.emit (node:events:369:20)
at makeRequest (/home/workspace/node_modules/cacheable-request/src/index.js:94:9)
at /home/workspace/node_modules/cacheable-request/src/index.js:104:14
at runNextTicks (node:internal/process/task_queues:59:5)
at processImmediate (node:internal/timers:437:9)
お、gotさんが古そう
最新のgotをインストールする
$ npm install got@latest
再度gatsby develp
してみる
$ npm install got@latest
gatsby develp
してみる
エラーが出なくなった
おわりに
こういう系ほったらかしにしがちですが、ぺちぺちやれば普通に直ってよかったです
本当はサイトマップが生成されなくなった原因を追ってて、ビルド時にエラーはいていたのを対応すれば出るようになると思ったのですが、全然関係なかったです
でも少しすっきりしました!
それでは!
Author And Source
この問題について(Gatsbyビルド時にOutgoingMessage.prototype._headers is deprecatedと怒られる件), 我々は、より多くの情報をここで見つけました https://qiita.com/akitkat/items/82504eab3623d4441326著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .