feat: use quick crypto

This commit is contained in:
Adrian Castro
2024-02-10 11:21:14 +01:00
parent 1a44c10c0d
commit a270c94e03
3 changed files with 395 additions and 8 deletions

View File

@@ -6,6 +6,18 @@ module.exports = function (api) {
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
plugins: ["react-native-reanimated/plugin"],
plugins: [
"react-native-reanimated/plugin",
[
"module-resolver",
{
alias: {
crypto: "react-native-quick-crypto",
stream: "stream-browserify",
buffer: "@craftzdog/react-native-buffer",
},
},
],
],
};
};