LoginSignup
1
0

More than 5 years have passed since last update.

Kubuntu + chromium + Visual Studio Codeの環境で、launch.jsonの設定メモ

Posted at

runtimeExecutableと、userDataDirの指定があるとデバッグ実行できました。


{
    // IntelliSense を使用して利用可能な属性を学べます。
    // 既存の属性の説明をホバーして表示します。
    // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "launch chrome",
            "type": "chrome",
            "request": "launch",
            "file": "${workspaceRoot}/index.html",
            "runtimeExecutable": "/usr/bin/chromium-browser",
            "userDataDir": "${workspaceRoot}/out/chrome"
        }
    ]
}
1
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
1
0