From f73d7b632b48851bd4c0ae27794fc4e84b6f3d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hulusi=20Kafal=C4=B1er?= <13810855+chsdwn@users.noreply.github.com> Date: Mon, 2 Jan 2023 10:57:17 +0300 Subject: [PATCH] docs: fix invalid product.json example (#1366) --- DOCS.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/DOCS.md b/DOCS.md index b70f6fb..fefe0a0 100644 --- a/DOCS.md +++ b/DOCS.md @@ -77,13 +77,15 @@ Or by creating a custom `product.json` at the following location (replace `VSCod with the content: +- Note: set `cacheUrl` to empty string for every other extension gallery + ```jsonc { "extensionsGallery": { "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", "itemUrl": "https://marketplace.visualstudio.com/items", - "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", // set to empty string for every other extension gallery - "controlUrl": "", + "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", + "controlUrl": "" } } ```