PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
18 lines
340 B
JavaScript
18 lines
340 B
JavaScript
import buffer from "node:buffer";
|
|
import crypto from "node:crypto";
|
|
function apply() {
|
|
if (!globalThis.crypto) {
|
|
Object.defineProperty(globalThis, "crypto", {
|
|
value: crypto.webcrypto
|
|
});
|
|
}
|
|
if (!globalThis.File) {
|
|
Object.defineProperty(globalThis, "File", {
|
|
value: buffer.File
|
|
});
|
|
}
|
|
}
|
|
export {
|
|
apply
|
|
};
|