Content
Comments
Enable comments on your blog.
You can enable comments on your blog. Two providers are supported: Hakanai Connect and Hyvor Talk.
The provider is selected with the provider option (defaults to hyvor_talk when omitted).
Hakanai Connect
If you want to use it, you'll need to create an account on Hakanai Connect and get a key.
Then, you can enable it by adding the following code to the app.config.ts file:
comments: {
enabled: true,
provider: 'hakanai',
hakanai: {
key: "YOUR_HAKANAI_KEY",
},
},
Replace
YOUR_HAKANAI_KEY with your Hakanai Connect key.The current post slug is automatically passed as the thread id (data-page-id), just like with Hyvor Talk.
Hyvor Talk
If you want to use it, you'll need to create an account and get a website id.
Then, you can enable it by adding the following code to the app.config.ts file:
comments: {
enabled: true,
provider: 'hyvor_talk',
hyvor_talk: {
website_id: "YOUR_HYVOR_TALK_WEBSITE_ID",
},
},
Replace
YOUR_HYVOR_TALK_WEBSITE_ID with your Hyvor Talk website id.