From a4b0f78a866fd2f25f85f88e06381c21e1d0bb64 Mon Sep 17 00:00:00 2001 From: Jared Schoeny Date: Fri, 10 Oct 2025 23:40:44 -1000 Subject: [PATCH] Add remote pattern for local supabase images --- next.config.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/next.config.ts b/next.config.ts index e9ffa30..03d6b51 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,16 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ + images: { + remotePatterns: [ + { + protocol: 'http', + hostname: '127.0.0.1', + port: '54321', + pathname: '/storage/v1/**', + }, + ], + }, }; export default nextConfig;