From 8d831d369026ff421063a156307c34a3631ca68a Mon Sep 17 00:00:00 2001 From: Gil Desmarais Date: Sat, 22 Aug 2026 13:06:57 +0200 Subject: [PATCH] fix(feed-directory): bundle catalog client script in Astro build The feed directory referenced ./feed-directory.js as a raw src URL, which 404'd in production and prevented GET /api/v1/configs from ever running. Use an inline Astro script import so Vite emits a hashed /_astro/ bundle. --- src/components/FeedDirectory.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/FeedDirectory.astro b/src/components/FeedDirectory.astro index 679788db..14f0f063 100644 --- a/src/components/FeedDirectory.astro +++ b/src/components/FeedDirectory.astro @@ -115,7 +115,9 @@ import { Icon } from "@astrojs/starlight/components";
- +