소스 검색

docs: fix invalid product.json example (#1366)

Hulusi Kafalıer 2 년 전
부모
커밋
f73d7b632b
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      DOCS.md

+ 4 - 2
DOCS.md

@@ -77,13 +77,15 @@ Or by creating a custom `product.json` at the following location (replace `VSCod
 
 
 with the content:
 with the content:
 
 
+- Note: set `cacheUrl` to empty string for every other extension gallery
+
 ```jsonc
 ```jsonc
 {
 {
   "extensionsGallery": {
   "extensionsGallery": {
     "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
     "serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
     "itemUrl": "https://marketplace.visualstudio.com/items",
     "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": ""
   }
   }
 }
 }
 ```
 ```