family-business/next.config.js

14 lines
247 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'placekitten.com',
},
],
},
};
module.exports = nextConfig;