hundreds-camera-24900
09/29/2022, 5:20 PMtypescript
import Cookies from "js-cookie";
htmx.defineExtension("get-csrf", {
onEvent: function(name: string, evt: any) {
if (name === "htmx:configRequest") {
evt.detail.headers["X-CSRFToken"] = Cookies.get("csrftoken");
}
},
});