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
Where: react-and-the-vanishing-network/exercises/04.modern-react/01.solution.rsc/index.js -> line 192
Error: ReferenceError: File is not defined
Problem: File constructor is part of the browser environment and is not natively available in Node.js
Solution: Could be install a library that polyfills the File class -> I used 'file-api', that way the change is one line.
import { File } from 'file-api';
I hope it helps, cheers!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Where: react-and-the-vanishing-network/exercises/04.modern-react/01.solution.rsc/index.js -> line 192
Error: ReferenceError: File is not defined
Problem: File constructor is part of the browser environment and is not natively available in Node.js
Solution: Could be install a library that polyfills the File class -> I used 'file-api', that way the change is one line.
import { File } from 'file-api';
I hope it helps, cheers!
The text was updated successfully, but these errors were encountered: