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

13 lines
232 B
TypeScript

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