22 lines
413 B
JavaScript
22 lines
413 B
JavaScript
const nextConfig = {
|
|
reactStrictMode: false, // changed this to false
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'lh3.googleusercontent.com',
|
|
port: '',
|
|
pathname: '/a/**'
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '*.googleusercontent.com',
|
|
port: '',
|
|
pathname: '**'
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
module.exports = nextConfig;
|