1
0

hm.ts 726 B

12345678910111213141516171819202122232425262728
  1. import { inBrowser } from 'vitepress';
  2. const SITE_ID = '2e443a834727c065877c01d89921545e';
  3. declare global {
  4. interface Window {
  5. _hmt: any;
  6. }
  7. }
  8. function registerAnalytics() {
  9. window._hmt = window._hmt || [];
  10. const script = document.createElement('script');
  11. script.innerHTML = `var _hmt = _hmt || [];
  12. (function() {
  13. var hm = document.createElement("script");
  14. hm.src = "https://hm.baidu.com/hm.js?${SITE_ID}";
  15. var s = document.getElementsByTagName("script")[0];
  16. s.parentNode.insertBefore(hm, s);
  17. })()`;
  18. document.querySelector('head')?.append(script);
  19. }
  20. export function initHmPlugin() {
  21. if (inBrowser && import.meta.env.PROD) {
  22. registerAnalytics(SITE_ID);
  23. }
  24. }