This commit implements the core admin dashboard functionality including NextAuth authentication, Cloudflare D1 database integration with complete schema, and Cloudflare R2 file upload system for portfolio images. Features include artist management, appointment scheduling, and data migration capabilities.
20 lines
490 B
JavaScript
20 lines
490 B
JavaScript
// Polyfill crypto() in the Node.js environment
|
|
"use strict";
|
|
if (!global.crypto) {
|
|
let webcrypto;
|
|
Object.defineProperty(global, "crypto", {
|
|
enumerable: false,
|
|
configurable: true,
|
|
get () {
|
|
if (!webcrypto) {
|
|
webcrypto = require("node:crypto").webcrypto;
|
|
}
|
|
return webcrypto;
|
|
},
|
|
set (value) {
|
|
webcrypto = value;
|
|
}
|
|
});
|
|
}
|
|
|
|
//# sourceMappingURL=node-polyfill-crypto.js.map
|