From 3dfc4d9dc109014283bf6acca8b3d7b50cf62a0d Mon Sep 17 00:00:00 2001 From: Dusk1e <135010814+Dusk1e@users.noreply.github.com> Date: Fri, 14 Aug 2026 03:20:45 +0300 Subject: [PATCH] fix(ai-image-generation): add missing /shelby base path to blob URL NEXT_PUBLIC_SHELBY_API_URL pointed at the host root, so GeneratedImages built https://api.shelbynet.shelby.xyz/v1/blobs/... That path is served by the Aptos fullnode, which has no such route, so every image in the gallery 404s. The blob service is mounted under /shelby, which is what the app's own upload hook and README already use. --- apps/ai-image-generation/.env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ai-image-generation/.env.example b/apps/ai-image-generation/.env.example index 84faa15..029b186 100644 --- a/apps/ai-image-generation/.env.example +++ b/apps/ai-image-generation/.env.example @@ -1,5 +1,5 @@ # Shelby Protocol Configuration -NEXT_PUBLIC_SHELBY_API_URL=https://api.shelbynet.shelby.xyz +NEXT_PUBLIC_SHELBY_API_URL=https://api.shelbynet.shelby.xyz/shelby # AI Service API Keys OPENAI_API_KEY=your_openai_api_key_here