The CDN URL is broken on the install page:

What's very weird is that it works just fine on the CSS page:

Both of these are calling the same publishedUrl() function, so... 🤷
|
export function publishedUrl (path, pkg = defaultPackage) { |
|
return new URL(path, `https://unpkg.com/${pkg.name}@${pkg.version}/`).toString() |
|
} |
The CDN URL is broken on the install page:
What's very weird is that it works just fine on the CSS page:
Both of these are calling the same
publishedUrl()function, so... 🤷design-system/website/src/utils.js
Lines 3 to 5 in 2333794