We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the code
import { BarcodeFormat, DecodeHintType } from '@zxing/library'; import { BrowserCodeReader, IScannerControls, BrowserMultiFormatReader, } from '@zxing/browser'; const hints = new Map(); const formats = [ BarcodeFormat.EAN_13, BarcodeFormat.EAN_8, // BarcodeFormat.CODABAR, ]; hints.set(DecodeHintType.POSSIBLE_FORMATS, formats); const codeReader = new BrowserMultiFormatReader(hints); this.controls = await codeReader.decodeFromVideoDevice( .... );
And this is the import size 1.2MB, Idk if its more related to this or to the parent library
The text was updated successfully, but these errors were encountered:
I also have this problem. Is it possible to reduce the bundle size? This is the biggest package I have on my app.
Sorry, something went wrong.
No branches or pull requests
This is the code
And this is the import size 1.2MB,
Idk if its more related to this or to the parent library
The text was updated successfully, but these errors were encountered: