From 16b4220c10b2ba5a611705484aaeaf8392e8ad15 Mon Sep 17 00:00:00 2001
From: Jake Bailey <5341706+jakebailey@users.noreply.github.com>
Date: Mon, 16 Dec 2024 13:47:45 -0800
Subject: [PATCH] Switch CDN for playground (#24)
---
README.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index fb55b38..c3b0f6d 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ See the module releases ([monaco-editor](https://www.npmjs.com/package/@typescri
### Nightlies
-The Playground will access [https://typescript.azureedge.net/indexes/releases/next.json](https://typescript.azureedge.net/indexes/releases/next.json) to see what the latest version is of Monaco for TypeScript is.
+The Playground will access [https://playgroundcdn.typescriptlang.org/indexes/releases/next.json](https://playgroundcdn.typescriptlang.org/indexes/releases/next.json) to see what the latest version is of Monaco for TypeScript is.
### Pull Request Builds
@@ -50,14 +50,14 @@ Every release has a corresponding upload to [azure blob storage](https://ms.port
There are two indexes of all uploaded TypeScript and Monaco-Editor versions. It's important to note that Monaco Editor
is indexed by the version of TypeScript it supports - not the version of the monaco-editor package.
-- Releases: [`https://typescript.azureedge.net/indexes/releases.json`](https://typescript.azureedge.net/indexes/releases.json)
-- Pre-Releases: [`https://typescript.azureedge.net/indexes/pre-releases.json`](https://typescript.azureedge.net/indexes/pre-releases.json)
-- Next: (provides a redirect to the latest nightly version)
[`https://typescript.azureedge.net/indexes/next.json`](https://typescript.azureedge.net/indexes/next.json)
+- Releases: [`https://playgroundcdn.typescriptlang.org/indexes/releases.json`](https://playgroundcdn.typescriptlang.org/indexes/releases.json)
+- Pre-Releases: [`https://playgroundcdn.typescriptlang.org/indexes/pre-releases.json`](https://playgroundcdn.typescriptlang.org/indexes/pre-releases.json)
+- Next: (provides a redirect to the latest nightly version)
[`https://playgroundcdn.typescriptlang.org/indexes/next.json`](https://playgroundcdn.typescriptlang.org/indexes/next.json)
You can use the values from the two indexes to make links like:
-- https://typescript.azureedge.net/cdn/3.7.4/monaco/package.json
-- https://typescript.azureedge.net/cdn/3.7.4/typescript/package.json
+- https://playgroundcdn.typescriptlang.org/cdn/3.7.4/monaco/package.json
+- https://playgroundcdn.typescriptlang.org/cdn/3.7.4/typescript/package.json
---