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 3 years have passed since last update.

VSCodeのデバッガーがクラッシュするときの対処法

Posted at

フロントエンドの開発をしています。

あるときから、Debugger for Chromeを使ったデバッグを行った際に、ルートページまでは表示できるが、ログインボタンを押下するとChromeのウィンドウがクラッシュするようになりました。

Debuggerが落ちるときの対処法についてです。

解決法

settings.json"debug.javascript.usePreview": falseを設定します。

例:

{
  "eslint.validate": ["typescript"],
  "debug.javascript.usePreview": false
}

今後の更新で改善される可能性はありますが、それまではこれで対応できます。

参考ページ

Chrome window crashes · Issue #742 · microsoft/vscode-js-debug
Visual Studio Codeをv1.46.1に戻した|フィジカルモンスター|note

0
0
1

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?