diff --git a/docz/docs/02-getting-started/01-installation/07-bun.md b/docz/docs/02-getting-started/01-installation/07-bun.md index 63e5641..7c08f1e 100644 --- a/docz/docs/02-getting-started/01-installation/07-bun.md +++ b/docz/docs/02-getting-started/01-installation/07-bun.md @@ -123,6 +123,7 @@ This demo was last tested in the following deployments: |:-------------|:--------|:-----------| | `darwin-x64` | `1.1.4` | 2024-04-19 | | `win10-x64` | `1.1.4` | 2024-04-19 | +| `linux-x64` | `1.1.4` | 2024-04-25 | ::: @@ -158,7 +159,7 @@ import * as fs from 'fs'; XLSX.set_fs(fs); /* fetch JSON data and parse */ -const url = "https://sheetjs.com/data/executive.json"; +const url = "https://docs.sheetjs.com/executive.json"; const raw_data = await (await fetch(url)).json(); /* filter for the Presidents */ diff --git a/docz/docs/02-getting-started/02-examples/02-export.mdx b/docz/docs/02-getting-started/02-examples/02-export.mdx index e9089f4..6fb30eb 100644 --- a/docz/docs/02-getting-started/02-examples/02-export.mdx +++ b/docz/docs/02-getting-started/02-examples/02-export.mdx @@ -43,14 +43,14 @@ sequenceDiagram ## Acquire Data The raw data is available in JSON form[^1]. It has been mirrored at -https://sheetjs.com/data/executive.json +https://docs.sheetjs.com/executive.json ### Raw Data Acquiring the data is straightforward with `fetch`: ```js -const url = "https://sheetjs.com/data/executive.json"; +const url = "https://docs.sheetjs.com/executive.json"; const raw_data = await (await fetch(url)).json(); ``` @@ -555,7 +555,7 @@ browser should try to create `Presidents.xlsx` ```jsx live function Presidents() { return (