Files
graff.estate-nextjs-updated/next.config.mjs
T

16 lines
261 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'graff.estate',
port: '',
},
],
},
};
export default nextConfig;