gdpr-consent
Version:
GDPR banner to comply with the European cookie law. Inspired by tarteaucitronjs.
16 lines (15 loc) • 447 B
JavaScript
import { addScript } from "../utils/index.js";
export const twitter = (() => {
return {
key: "twitter",
type: "social",
name: "X (formerly Twitter)",
uri: "https://support.twitter.com/articles/20170514",
needConsent: true,
lazyConsent: false,
cookies: [],
js: function () {
addScript("//platform.twitter.com/widgets.js", { id: "twitter-wjs" });
},
};
});