carlcassar / blog-comments

This is a public respository for comments on my blog at https://www.carlcassar.com
0 stars 1 forks source link

articles/add-comments-to-your-blog-in-under-five-minutes #2

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

Carl Cassar - Add comments to your blog in under five minutes

Utterances is a free and open source comment system that uses GitHub issues to track comments on a web page. In this article I'll show you how to get it up and running and share some tips on how to configure it.

https://www.carlcassar.com/articles/add-comments-to-your-blog-in-under-five-minutes

carlcassar commented 3 years ago

I hope that you found this article helpful. I look forward to reading your comments!

Please let me know if you find a better way to install Utterances in a Nuxt JS app. At the time of writing there is an open issue regarding integration into vue / vuepress sites which talks about a potential ES6 import solution.

clarerobson commented 3 years ago

👍

pal00750 commented 3 years ago

Hh

TangoPJ commented 3 years ago

Hm, this is interesting for me

miclgael commented 1 year ago

Great solution thank you, Carl.

I'm using Nuxt 3 which required one additional step of using the <component is> helper - to avoid side-effect errors.

<component :is="'script'"
      type="application/javascript"
      src="https://utteranc.es/client.js"
      repo=""
      issue-term="pathname"
      label="comment"
      theme="github-light"
      crossorigin="anonymous"
      async>
</component>

I got the answer here: https://stackoverflow.com/a/69746736

carlcassar commented 1 year ago

Thank you for the update @miclgael