LoginSignup
59
58

More than 5 years have passed since last update.

Visual Studio Code に Proxy を設定する方法

Last updated at Posted at 2016-03-07

Visual Studio Code に Proxy を設定する方法です。

  • Visual Studio Code 1.22.1

ユーザー設定を開き、http.proxy を追記する

会社内等 Proxy環境でExtensionを導入する場合の設定です。
Ctrl + , にて ユーザー設定を開きます

settings.json
{
    "http.proxy": "http://proxy.example.com:8000",
    "http.proxyStrictSSL": false
}

http.proxy にプロキシサーバのアドレスとポートを設定してください。

Extension を確認する

プロキシー環境で拡張をインストールし、その後拡張一覧を確認してみましょう。

Ctrl + Shift + P で show installed extension を打ち込んで Enterキーを押す、一覧が表示されます。

2018-04-11_13h25_52.png

59
58
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
59
58