diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 2ae4cc8..d5592fc 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -11,6 +11,18 @@ const nextConfig: NextConfig = { }, ]; }, + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "*.pragmazest.com", + }, + { + protocol: "http", + hostname: "*localhost*", + }, + ], + }, }; export default nextConfig;