Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(react): replace invalid characters in chunk name
We're using base64 to generate short chunk names, unfortunately this means that we need to replace some characters which are invalid characters in file names. We replace `/` with `-`, `+` with `_` and `=` with an empty string. Replacing `=` with an empty string shouldn't occur in real life, because we're only using the first four characters.
- Loading branch information