update code examples in readme to use correct package name

nulfrost 44ba46f9 f6db4320

Changed files
+2 -2
+2 -2
README.md
··· 20 20 ```ts 21 21 // src/content.config.ts 22 22 import { defineCollection, z } from "astro:content"; 23 - import { leafletStaticLoader } from "leaflet-loader-astro"; 23 + import { leafletStaticLoader } from "@nulfrost/leaflet-loader-astro"; 24 24 25 25 const documents = defineCollection({ 26 26 loader: leafletStaticLoader({ repo: "did:plc:qttsv4e7pu2jl3ilanfgc3zn" }), ··· 101 101 ```ts 102 102 // src/live.config.ts 103 103 import { defineLiveCollection, z } from "astro:content"; 104 - import { leafletLiveLoader } from "leaflet-loader-astro"; 104 + import { leafletLiveLoader } from "@nulfrost/leaflet-loader-astro"; 105 105 106 106 const documents = defineLiveCollection({ 107 107 loader: leafletLiveLoader({ repo: "did:plc:qttsv4e7pu2jl3ilanfgc3zn" }),