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;