Skip to content

Commit 49c09d3

Browse files
fix(scripts): always load latest core.json (#2223)
Co-authored-by: Liam DeBeasi <[email protected]>
1 parent b93ddec commit 49c09d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const DEMOS_PATH = path.resolve('static/demos');
88
let COMPONENT_LINK_REGEXP;
99

1010
(async function () {
11-
const response = await fetch('https://unpkg.com/@ionic/docs@6.0.10-dev.11645801048.2804c20/core.json');
11+
const response = await fetch('https://unpkg.com/@ionic/docs/core.json');
1212
const { components } = await response.json();
1313

1414
const names = components.map((component) => component.tag.slice(4));

0 commit comments

Comments
 (0)