pitchfork-cli 2.12.1

Daemons with DX
Documentation
1
2
3
4
5
6
7
8
9
// htmx loader - loads from CDN
// This file exists so the embedded asset system works, but we load htmx from CDN
(function() {
    if (typeof htmx === 'undefined') {
        var script = document.createElement('script');
        script.src = 'https://unpkg.com/htmx.org@2.0.4';
        document.head.appendChild(script);
    }
})();