From feb71db519fc4e3f488a9788201f0cdd506bfaa7 Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Sat, 6 Dec 2025 18:11:02 +0100 Subject: [PATCH 1/2] [tmp] Update pluginsUrl to point to deploy preview --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c644ddaaa..e94fd26f7 100644 --- a/index.js +++ b/index.js @@ -8,4 +8,4 @@ const PLUGINS_FILE = fileURLToPath(new URL('site/plugins.json', import.meta.url) // TODO: replace with a JSON import once this is supported without any // experimental flag export const pluginsList = JSON.parse(readFileSync(PLUGINS_FILE)) -export const pluginsUrl = 'https://list-v2--netlify-plugins.netlify.app/plugins.json' +export const pluginsUrl = 'https://deploy-preview-1450--netlify-plugins.netlify.app/plugins.json' From f8c03a66f19824708743fe7526f44f283ce7b631 Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Sat, 6 Dec 2025 18:25:40 +0100 Subject: [PATCH 2/2] Log pluginsUrl to the console --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index e94fd26f7..a215ca873 100644 --- a/index.js +++ b/index.js @@ -9,3 +9,5 @@ const PLUGINS_FILE = fileURLToPath(new URL('site/plugins.json', import.meta.url) // experimental flag export const pluginsList = JSON.parse(readFileSync(PLUGINS_FILE)) export const pluginsUrl = 'https://deploy-preview-1450--netlify-plugins.netlify.app/plugins.json' + +console.log({ pluginsUrl })