Add remote pattern for local supabase images

This commit is contained in:
Jared Schoeny
2025-10-10 23:40:44 -10:00
parent e5f959ece1
commit a4b0f78a86

View File

@@ -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;