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
So to run locally (via filesystem, with no server), you should do two things:
in main.js after image.src, do image.crossOrigin = "anonymous";
image.src
image.crossOrigin = "anonymous";
Run the browser with no security, for example for chrome do: chrome.exe --disable-web-security --allow-file-access-from-files
chrome.exe --disable-web-security --allow-file-access-from-files
The text was updated successfully, but these errors were encountered:
No branches or pull requests
So to run locally (via filesystem, with no server), you should do two things:
in main.js after
image.src
, doimage.crossOrigin = "anonymous";
Run the browser with no security, for example for chrome do:
chrome.exe --disable-web-security --allow-file-access-from-files
The text was updated successfully, but these errors were encountered: