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