From 09567cedadebe7fb5501bd53a510dd1e800561cd Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 13 Feb 2026 13:41:46 -0700 Subject: [PATCH] Fix store images: remove search restriction from localPatterns The `search: ''` setting in localPatterns was blocking image URLs that include query parameters (width, quality, format). Removing this restriction allows the /api/assets proxy URLs to pass through Next.js image optimization. Co-Authored-By: Claude Opus 4.6 --- frontend/next.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index f5f51f2..570469e 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -6,7 +6,6 @@ const nextConfig: NextConfig = { localPatterns: [ { pathname: '/api/assets/**', - search: '', }, ], remotePatterns: [