You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,30 @@
1
1
# ffjavascript
2
+
2
3
Finite Field Library in Javascript
3
4
5
+
This package is tested to work in the following environments:
6
+
7
+
-**NodeJS**
8
+
-**Browser**
9
+
-**Chrome Extension**
10
+
-**Metamask Snaps (SES)**
11
+
12
+
## Knows Issues
13
+
14
+
### Webpack Configuration
15
+
16
+
If you're using the `ffjavascript` package in a webpack project (Next.js/Angular), you may need to disable the `splitChunks` option in your webpack configuration.
17
+
18
+
```javascript
19
+
module.exports= {
20
+
// ...
21
+
optimization: {
22
+
splitChunks:false,
23
+
},
24
+
// ...
25
+
};
26
+
```
27
+
4
28
## License
5
29
6
30
ffjavascript is part of the iden3 project copyright 2020 0KIMS association and published with GPL-3 license. Please check the COPYING file for more details.
0 commit comments