As you can see that I want to add my custom configuration in next.config.js . But it throws and error of invalid src prop . I have tried this in multiple ways but it always throws an error.
// Default Configuration
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
image: {
domains: ["links.papareact.com", "image.tmdb.org"],
},
};
module.exports = nextConfig;
//Configuration I want to add in this file
module.exports = {
images: {
domains: ["links.papareact.com", "image.tmdb.org"],
},
};