-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(cdn): update links from unpkg to jsdelivr
- Loading branch information
1 parent
e55b509
commit a6b5508
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,18 +20,18 @@ | |
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="https://unpkg.com/[email protected]/themes/prism.css" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/themes/prism.css" | ||
/> | ||
<link rel="stylesheet" href="https://unpkg.com/@aurodesignsystem/design-tokens@latest/dist/tokens/CSSCustomProperties.css"> | ||
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@aurodesignsystem/webcorestylesheets@latest/dist/demoWrapper.css" /> | ||
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@aurodesignsystem/webcorestylesheets@latest/dist/elementDemoStyles.css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/tokens/CSSCustomProperties.css"> | ||
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/demoWrapper.css" /> | ||
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/elementDemoStyles.css" /> | ||
</head> | ||
<body class="auro-markdown"> | ||
<main></main> | ||
|
||
<script type="module"> | ||
import 'https://unpkg.com/marked@latest/marked.min.js'; | ||
import 'https://unpkg.com/prismjs@latest/prism.js'; | ||
import 'https://cdn.jsdelivr.net/npm/marked@latest/marked.min.js'; | ||
import 'https://cdn.jsdelivr.net/npm/prismjs@latest/prism.js'; | ||
fetch('/demo/a11y.md') | ||
.then((response) => response.text()) | ||
.then((text) => { | ||
|
@@ -43,9 +43,9 @@ | |
<script type="module" src="../src/auro-hyperlink.js"></script> | ||
|
||
<!-- If additional elements are needed for the demo, add them here. --> | ||
<script src="https://unpkg.com/@aurodesignsystem/auro-accordion@latest/dist/auro-accordion__bundled.js" type="module"></script> | ||
<script src="https://unpkg.com/@aurodesignsystem/auro-icon@latest/dist/auro-icon__bundled.js" type="module"></script> | ||
<script src="https://unpkg.com/@aurodesignsystem/auro-button@latest/dist/auro-button__bundled.js" type="module"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-accordion@latest/dist/auro-accordion__bundled.js" type="module"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-icon@latest/dist/auro-icon__bundled.js" type="module"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-button@latest/dist/auro-button__bundled.js" type="module"></script> | ||
|
||
<!-- This reference will need to be addressed with the demo wrapper of the hyperlink docsite page--> | ||
<script src="./util.js"></script> | ||
|