【WebIDE】 code-server 使用 vscode 原生插件市场地址

夏奕
2023-12-01

WebIDE 使用的流畅度很高,但是不是VSCODE的默认市场地址有点不爽, 因此进行技术Hack
Ubuntu上deb安装后code-server 将插件市场地址切换到微软源,仅需 替换 下面文件的对应内容

文件:

/usr/lib/code-server/lib/vscode/product.json

内容:

  "extensionsGallery": {
    "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
    "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index",
    "itemUrl": "https://marketplace.visualstudio.com/items",
    "controlUrl": "",
    "recommendationsUrl": ""
  }

顺便说一句:这个方法对 docker 安装 code-server 也是适用的, 前提是你到docker容器本身修改上面的文件即可

 类似资料: