Skip to content

Commit 41d4751

Browse files
dfbaskinalexdriaguine
authored andcommitted
Adding troubleshooting information about Subresource Integrity digests. (facebook#1220)
1 parent e1d708a commit 41d4751

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/react-scripts/template/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ You can find the most recent version of this guide [here](https://github.com/fac
6161
- [Troubleshooting](#troubleshooting)
6262
- [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra)
6363
- [`npm run build` silently fails](#npm-run-build-silently-fails)
64+
- [Subresource integrity checks fail](#subresource-integrity-checks-fail)
6465
- [Something Missing?](#something-missing)
6566

6667
## Updating to New Releases
@@ -1244,6 +1245,17 @@ There are also reports that *uninstalling* Watchman fixes the issue. So if nothi
12441245
12451246
It is reported that `npm run build` can fail on machines with no swap space, which is common in cloud environments. If [the symptoms are matching](https://github.com/facebookincubator/create-react-app/issues/1133#issuecomment-264612171), consider adding some swap space to the machine you’re building on, or build the project locally.
12461247
1248+
### Subresource integrity checks fail
1249+
1250+
[Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) digests are added to the build output files. For a particular scenario, these checks may fail when deployed. The files are built using `LF` characters, but if your deployment uses a Git repository for deployment (like Azure web sites) and the Git repository is set up to translate `LF` characters into `CR/LF` characters, then the checked out files will be different and the digests will be invalid.
1251+
1252+
To fix this, just add a `.gitattributes` file to your deployment repository that will ensure the build files are not modified when checked out:
1253+
1254+
```
1255+
*.css text eol=lf
1256+
*.js text eol=lf
1257+
```
1258+
12471259
## Something Missing?
12481260
12491261
If you have ideas for more “How To” recipes that should be on this page, [let us know](https://github.com/facebookincubator/create-react-app/issues) or [contribute some!](https://github.com/facebookincubator/create-react-app/edit/master/packages/react-scripts/template/README.md)

0 commit comments

Comments
 (0)