From 5f1e098aa380e20217f2b32ed189b63e98e99db7 Mon Sep 17 00:00:00 2001 From: svsairevanth12 Date: Fri, 6 Feb 2026 14:24:48 -0800 Subject: [PATCH] Update download buttons to point to VS Code Marketplace listing page Changed /vsx redirect destination from the direct .vspackage download URL to the VS Code Marketplace listing page: https://marketplace.visualstudio.com/items?itemName=augment.vscode-augment Updated in both vercel.json and next.config.js. --- next.config.js | 2 +- vercel.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 2177820..7ca7dd7 100644 --- a/next.config.js +++ b/next.config.js @@ -131,7 +131,7 @@ const nextConfig = { }, { source: '/vsx', - destination: 'https://marketplace.visualstudio.com/_apis/public/gallery/publishers/augment/vsextensions/vscode-augment/latest/vspackage', + destination: 'https://marketplace.visualstudio.com/items?itemName=augment.vscode-augment', permanent: true, } ] diff --git a/vercel.json b/vercel.json index 8412d49..8f24e6a 100644 --- a/vercel.json +++ b/vercel.json @@ -15,7 +15,7 @@ }, { "source": "/vsx", - "destination": "https://marketplace.visualstudio.com/_apis/public/gallery/publishers/augment/vsextensions/vscode-augment/latest/vspackage", + "destination": "https://marketplace.visualstudio.com/items?itemName=augment.vscode-augment", "permanent": true } ]