Skip to content

Commit b4b81ba

Browse files
authored
chore: move downloads to Azure CDN (#615)
This should drastically speedup downloads across the globe.
1 parent 6b8c40e commit b4b81ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/server/ffPlaywright.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export class FFPlaywright implements Playwright {
190190

191191
const defaultOptions = {
192192
path: path.join(this._projectRoot, '.local-firefox'),
193-
host: 'https://playwright2.blob.core.windows.net',
193+
host: 'https://playwright.azureedge.net',
194194
platform: (() => {
195195
const platform = os.platform();
196196
if (platform === 'darwin')

src/server/wkPlaywright.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export class WKPlaywright implements Playwright {
189189

190190
const defaultOptions = {
191191
path: path.join(this._projectRoot, '.local-webkit'),
192-
host: 'https://playwright2.blob.core.windows.net',
192+
host: 'https://playwright.azureedge.net',
193193
platform: (() => {
194194
const platform = os.platform();
195195
if (platform === 'darwin')

0 commit comments

Comments
 (0)