Files
mercadodevida/project/frontend/next.config.ts
2026-08-17 22:23:10 +02:00

12 lines
196 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{ protocol: 'https', hostname: '**' },
],
},
};
export default nextConfig;