When I attempt and import crypto, I keep getting this error message on React.
Module not found: Error: Can't resolve 'crypto'
This is the current code:
const { createHash } = require('crypto');
function calculateIdHash(input) {
return createHash('sha256').update(input).digest('hex');
}
I even tried import { createHash } from 'crypto'
, and the same error message popped up.
Any help would be great. Thanks.