in my next.js application, external images url is not working. it is showing 404 error #36933
Unanswered
himanshuthakurmagictym
asked this question in
Help
Replies: 1 comment
-
Hi, I cannot manually reach the images either, for example: I looked at the request made by
When I decode it: decodeURIComponent(url) // 'https://gyaanapi.herokuapp.com/public\\images\\category\\3.png' I guess the problem are the However, doing: fetch(decodeURIComponent(url)).then(console.log) Return Could you try to change the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in my next.js application, external images url is not working. it is showing a 404 error.
i have using my api in config file
module.exports = {
reactStrictMode: true,
images: {
domains: ['gyaanapi.herokuapp.com'],
},
}
Url:https://gyanais.vercel.app/courses
Screenshort: https://prnt.sc/RK0O18J6gTlf
Beta Was this translation helpful? Give feedback.
All reactions