12345678910111213141516171819202122232425262728293031 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- async function microsoftClarity() {
- return {
- name: "docusaurus-plugin-refine-clarity",
- injectHtmlTags() {
- return {
- headTags: [
- {
- tagName: "link",
- attributes: {
- rel: "preconnect",
- href: "https://www.clarity.ms",
- },
- },
- {
- tagName: "script",
- innerHTML: `
- (function(c,l,a,r,i,t,y){
- c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
- t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
- y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
- })(window, document, "clarity", "script", "kv1shigbgy");`,
- },
- ],
- };
- },
- };
- }
- exports.default = microsoftClarity;
|