We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f426a3 commit 9962d20Copy full SHA for 9962d20
docs/loaders.md
@@ -48,7 +48,7 @@ const quakes = FileAttachment("quakes.csv").csv({typed: true});
48
Now you can display the earthquakes in a map using [Observable Plot](./lib/plot):
49
50
```js
51
-const world = await fetch("https://cdn.jsdelivr.net/npm/world-atlas@1/world/110m.json").then((response) => response.json());
+const world = await fetch(import.meta.resolve("npm:world-atlas@1/world/110m.json")).then((response) => response.json());
52
const land = topojson.feature(world, world.objects.land);
53
```
54
0 commit comments