Files
vf_react/boilerplate-chakra-pro-main/next.config.js
2025-11-22 11:41:56 +08:00

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;