Waline评论系统接入记录

🕒2025年03月31日 11:05:35  | 📖--  | 💬--  | 🏷️ , ,
📝1420 个字  | ⌛要看完怎么也得4分钟吧
链接汇总

Waline官网:https://waline.js.org/
Vercel官网:https://vercel.com/
TiDB官网:https://tidbcloud.com/
Neon官网:https://console.neon.tech/

接入流程:

<head>
  <!-- head部分 -->
  <link rel="stylesheet" href="https://unpkg.com/@waline/client@v3/dist/waline.css"/>
</head>
<body>
  <!-- body部分 -->
  <div id="waline"></div>
  <script type="module">
    import { init } from 'https://unpkg.com/@waline/client@v3/dist/waline.js';
    init({
      el: '#waline',
      serverURL: 'https://your-domain.vercel.app',     //这里换成刚刚部署的服务器地址
    });
  </script>
</body>