Mission Control Dashboard - Initial implementation

This commit is contained in:
Daniel Arroyo
2026-03-27 18:36:05 +00:00
parent 257cea2c7d
commit a8fb4d4555
12516 changed files with 2307128 additions and 2 deletions

2
node_modules/get-nonce/dist/es2015/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export declare const setNonce: (nonce: string) => void;
export declare const getNonce: () => string | undefined;

13
node_modules/get-nonce/dist/es2015/index.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
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;
};