#image broken on prod
22 messages · Page 1 of 1 (latest)
🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord
🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize
✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)
@weak blaze are you on chrome?
Arc
can you inspect your page to see the network?
I just tested on safari, same issue :/
so, images are getting fetched?
Yep
can you send the url of your site
Rejoignez l'une de nos nombreuse communautée
an image on hero is showing
I'm getting the same issue, can you show your nextConfig?
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
output: "standalone",
};
export default nextConfig;
hostname should be your image server url
Sorry code pasting seems to be broken on discord iPhone app as you can see here https://github.com/younes101020/Electra-v2/blob/main/next.config.mjs im allowing all hostname
/ @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "image.tmdb.org",
},
],
},
output: "standalone",
};
something like this
Ok i will try this
not work even with the change 😦