You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Got a bunch of error when using disquss with especially it was blocked by CORS. please see the image
Screenshots
Specifications:
OS: Windows 10
Package version: v.1.1.2
Node version: v14.18.1
Additional context
importReactfrom"react";importstyledfrom"@emotion/styled";import{DiscussionEmbed}from"disqus-react";typeBlogCommentsProps={title: string;slug: string;};typeDisqusConfig={url: string;identifier: string;title: string;};constCommentsWrapper=styled.div` max-width: 100%; margin: 40px 0px; @media screen and (max-width: 653px) { padding: 0 15px; }`;constBlogComments: React.FC<BlogCommentsProps>=(props)=>{// your disquss shortname from https://disqus.com/admin/constdisqusShortname=process.env.NEXT_PUBLIC_DISQUS_SHORTNAME;constdisqusConfig={// your site that was deployed on server in hereurl: `https://rizkyy.space/blog/${props.slug}`,identifier: props.title,title: props.title,};return(<CommentsWrapper><DiscussionEmbedshortname={disqusShortname}config={disqusConfigasDisqusConfig}/></CommentsWrapper>);};exportdefaultBlogComments;
Any solutions about this?
The text was updated successfully, but these errors were encountered:
@ioofy These console errors appear to be caused by failing request for the sponsored links that Disqus utilizes for ad-supported publishers. My best guess is that they are likely failing due of some kind of adblock extension.
@ioofy These console errors appear to be caused by failing request for the sponsored links that Disqus utilizes for ad-supported publishers. My best guess is that they are likely failing due of some kind of adblock extension.
@ioofy These console errors appear to be caused by failing request for the sponsored links that Disqus utilizes for ad-supported publishers. My best guess is that they are likely failing due of some kind of adblock extension.
@tterb I have the same problem, but I don't have any active extension, testing from the phone I get the same thing. And it only happens in chrome, in safari it loads correctly.
Describe the bug
Got a bunch of error when using disquss with especially it was blocked by CORS. please see the image
Screenshots
Specifications:
Additional context
Any solutions about this?
The text was updated successfully, but these errors were encountered: