diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 14:35:19 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 14:35:19 +0200 |
| commit | 4b2dc07ac729369e09f943b318217321c02acb53 (patch) | |
| tree | 5dd5eaf86a28128bd110a105180d191628623b37 | |
| parent | a75acdb10d0fdcca1d4c286073fce0d07eca6e3e (diff) | |
Temporary load old images
| -rw-r--r-- | src/components/Geshem.tsx | 2 | ||||
| -rw-r--r-- | wrangler.jsonc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Geshem.tsx b/src/components/Geshem.tsx index 85c1a11..982d841 100644 --- a/src/components/Geshem.tsx +++ b/src/components/Geshem.tsx @@ -21,7 +21,7 @@ export function Geshem({ date }: GeshemProps) { useEffect(() => { const fetchImages = async () => - fetch(`/imgs/`) + fetch(`${IMAGES_BASE_URL}/imgs.json`) .then(res => res.json()) .then(imgs => (imgs as any)["280"]) .then(setImages); diff --git a/wrangler.jsonc b/wrangler.jsonc index fdb2ae8..db8f5e7 100644 --- a/wrangler.jsonc +++ b/wrangler.jsonc @@ -27,7 +27,7 @@ "pattern": "www.geshem.space", "custom_domain": true } - ], + ] // "triggers": { // "crons": ["* * * * *"] // } |
