From ef406cdf86b2f4eddbc0d9d743eb464ba021af18 Mon Sep 17 00:00:00 2001 From: Leon van Zyl Date: Mon, 1 Dec 2025 16:15:48 +0200 Subject: [PATCH] add Vercel Blob storage hostname and bump version to 1.1.24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes: - Add Vercel Blob storage hostname pattern (*.public.blob.vercel-storage.com) to Next.js image domains config for both main project and template - Bump create-agentic-app version from 1.1.23 to 1.1.24 - Minor whitespace cleanup in storage.ts files This allows images stored in Vercel Blob to be properly optimized by Next.js Image component in production deployments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- create-agentic-app/package-lock.json | 4 ++-- create-agentic-app/package.json | 2 +- create-agentic-app/template/next.config.ts | 4 ++++ create-agentic-app/template/src/lib/storage.ts | 2 ++ next.config.ts | 4 ++++ src/lib/storage.ts | 2 ++ 6 files changed, 15 insertions(+), 3 deletions(-) diff --git a/create-agentic-app/package-lock.json b/create-agentic-app/package-lock.json index 29934d5..d3fa599 100644 --- a/create-agentic-app/package-lock.json +++ b/create-agentic-app/package-lock.json @@ -1,12 +1,12 @@ { "name": "create-agentic-app", - "version": "1.1.23", + "version": "1.1.24", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "create-agentic-app", - "version": "1.1.23", + "version": "1.1.24", "license": "MIT", "dependencies": { "chalk": "^5.3.0", diff --git a/create-agentic-app/package.json b/create-agentic-app/package.json index 1a06850..0aba4a0 100644 --- a/create-agentic-app/package.json +++ b/create-agentic-app/package.json @@ -1,6 +1,6 @@ { "name": "create-agentic-app", - "version": "1.1.23", + "version": "1.1.24", "description": "Scaffold a new agentic AI application with Next.js, Better Auth, and AI SDK", "type": "module", "bin": { diff --git a/create-agentic-app/template/next.config.ts b/create-agentic-app/template/next.config.ts index 189f2a2..4113266 100644 --- a/create-agentic-app/template/next.config.ts +++ b/create-agentic-app/template/next.config.ts @@ -12,6 +12,10 @@ const nextConfig: NextConfig = { protocol: "https", hostname: "avatars.githubusercontent.com", }, + { + protocol: "https", + hostname: "*.public.blob.vercel-storage.com", + }, ], }, diff --git a/create-agentic-app/template/src/lib/storage.ts b/create-agentic-app/template/src/lib/storage.ts index 1d52ccd..9fe8d40 100644 --- a/create-agentic-app/template/src/lib/storage.ts +++ b/create-agentic-app/template/src/lib/storage.ts @@ -221,3 +221,5 @@ export async function deleteFile(url: string): Promise { + + diff --git a/next.config.ts b/next.config.ts index 189f2a2..4113266 100644 --- a/next.config.ts +++ b/next.config.ts @@ -12,6 +12,10 @@ const nextConfig: NextConfig = { protocol: "https", hostname: "avatars.githubusercontent.com", }, + { + protocol: "https", + hostname: "*.public.blob.vercel-storage.com", + }, ], }, diff --git a/src/lib/storage.ts b/src/lib/storage.ts index 1d52ccd..9fe8d40 100644 --- a/src/lib/storage.ts +++ b/src/lib/storage.ts @@ -221,3 +221,5 @@ export async function deleteFile(url: string): Promise { + +