mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 19:57:52 +01:00
10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
var nodeCrypto = require("crypto");
|
|
var dotenv = require("dotenv");
|
|
const fetch = require("node-fetch");
|
|
globalThis.fetch = fetch;
|
|
require("abortcontroller-polyfill/dist/polyfill-patch-fetch")
|
|
|
|
dotenv.config();
|
|
|
|
global.crypto = nodeCrypto;
|