#iframe in safari with next js

2 messages · Page 1 of 1 (latest)

lime kiln
#

this is code snippet for iframe:

 return (
                    <div className={itemClasses} key={_index}>
                        {HTMLContentTypes.includes(item.contentType) && (
                            <>
                                <iframe
                                    sandbox="allow-scripts"
                                    src={item.url}
                                    style={{
                                        pointerEvents: "none",
                                    }}
                                />
                            </>
                        )}
                        {IMGContentTypes.includes(item.contentType) && (
                            <Image
                                src={item.url}
                                alt="trade items"
                                layout="fill"
                                className="rounded-md object-cover"
                            />
                        )}
                    </div>
                );

sry, cannot share anymore becuase it's not deployed yet.

We're facing an issue with displaying iframe content on a website developed by NextJS on iOS.
Our goal is to display all iframe content correctly on all IOS versions for nextjs/typescript.

rancid iglooBOT
#

🔎 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)