Skip to content

Instantly share code, notes, and snippets.

@cp-sumi-k
Last active October 5, 2022 06:15
Show Gist options
  • Save cp-sumi-k/07af97a47198b673cf88e2a811a54041 to your computer and use it in GitHub Desktop.
Save cp-sumi-k/07af97a47198b673cf88e2a811a54041 to your computer and use it in GitHub Desktop.
let recaptchaScript = document.createElement("script");
recaptchaScript.setAttribute(
"src",
"https://www.google.com/recaptcha/enterprise.js?render=" + import.meta.env.VITE_RECAPTCHA_SITE_KEY
);
recaptchaScript.setAttribute("async", "true");
recaptchaScript.setAttribute("defer", "true");
document.head.appendChild(recaptchaScript);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment