Error: Invalid src prop (https://lh3.googleusercontent.com) on next/image
Error
Error: Invalid src prop (https://lh3.googleusercontent.com/a/AGNmyxaBHaW4bKYZ-NDsMmOSC2TZd0PoXcy3OM530KQQ=s96-c) on `next/image`, hostname "lh3.googleusercontent.com" is not configured under images in your `next.config.js`
See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host
The above error occured after I added the users profile image from google auth
Admin
2023-05-17
Simple fix is to go to your next.config.js and add the google user hostname as shown below
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['lh3.googleusercontent.com'],
},
}
module.exports = nextConfig
Similar Content
- How to setup a copy to clipboard functionality in either react.js or next.js site
- How to destructure objects with typescript in next js.
- Error Next.JS Prisma client not picking up new models
- Error could not find react-redux context value; please ensure the component is wrapped in a <Provider> in React Native
- Error: Invalid `prisma.model.findMany()` invocation. Query engine library for current platform "debian-openssl-1.1.x" could not be found.
Add Message
Click on the button below to add a new message to this thread
Tags
#Javascript
Thread detail
Satus: Open
Messages: 1Started: 2023-05-17loading..
Privacy Policy
By using our website,
you agree that devmaesters can store cookies on your device and disclose information in accordance with our privacy policy.