Files
MyBlog-Next/src/components/Comment.astro
T
2026-06-16 21:52:36 +08:00

27 lines
546 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
// src/components/Comment.astro
---
<div id="tcomment"></div>
<script is:inline>
function initTwikoo() {
try {
twikoo.init({
// 👇 替换成你自己的 Twikoo 环境 ID(例如 https://twikoo.yourdomain.com
envId: 'http://47.108.235.131:40063/',
el: '#tcomment',
});
} catch (e) {
console.error('Twikoo 初始化失败:', e);
}
}
</script>
<script
is:inline
defer
src="https://cdn.jsdelivr.net/npm/twikoo@1/dist/twikoo.all.min.js"
onload="initTwikoo()"
></script>