-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to add Disqus comments to the Gatsby Blog #131
Comments
There's actually a really nice React component for Disqus — https://js.coach/?search=disqus You'll just want to add that to the markdown wrapper ( |
I found the code I think I need to add but wasn't sure where I should embed it within the wrappers/md.js file. var React = require('react'); var App = createClass({
}); React.render(, document.getElementById('container')); |
Since this comes up as top result for "gatsby disqus comments" search. There is now an official react-disqus component here https://github.com/disqus/disqus-react and a blog post on how to configure here https://mk.gg/add-disqus-comments-to-gatsby-blog/. I just got this working on my blog using the gatsby-starter-blog starter kit! |
Is there a way to add Disqus comments to the Gatsby Blog? I was walking through the steps here: https://github.com/gatsbyjs/gatsby but wasn't sure where to incorporate the Disqus comment option. Any help would be much appreciated.
The text was updated successfully, but these errors were encountered: