Created by: pmrcunha
Closes #4912.
Hi! I was unable to load a .wasm file in an app generated with CRA, since the file-loader was catching it and throwing an error.
After ejecting, I realized that a minor change would allow the wasm files to be handled by webpack's internal loaders. This PR adds that change to CRA, so that wasm can be used without ejecting.
I tested my changes manually, by creating an app with CRA, linking my version of react-scripts, running the app normally, and then running the app loading an hello-world wasm project.
Hope this is useful!