persona-community-5/.pnpm-store/v3/files/31/629f8ae1116c2b7428588b596849aaf84c42608d8f2fd823d63ce657086df6495b5ea15ccb0bce9b0df55d457c64a952013fa0d5276cd3ad622d20466fda2b
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

14 lines
300 B
Plaintext

var currentNonce;
export var setNonce = function (nonce) {
currentNonce = nonce;
};
export var getNonce = function () {
if (currentNonce) {
return currentNonce;
}
if (typeof __webpack_nonce__ !== 'undefined') {
return __webpack_nonce__;
}
return undefined;
};