From 0e9bcac867bc4edbaac39dbb419aa30af00930fd Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Thu, 21 Jul 2016 20:32:35 +0100 Subject: [PATCH] Update README.md --- template/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/README.md b/template/README.md index 4e9d45bf..84069437 100644 --- a/template/README.md +++ b/template/README.md @@ -191,7 +191,7 @@ This works in CSS too: Webpack finds all relative module references in CSS (they start with `./`) and replaces them with the final paths from the compiled bundle. -If you make a typo or accidentally delete an important file, you will see a compilation error, just like when you import a non-existent JavaScript module. The filenames are generated by Webpack from content hashes. If the file content changes in the future, Webpack will give it a different name in production so you don’t need to worry about long-term caching of assets. +If you make a typo or accidentally delete an important file, you will see a compilation error, just like when you import a non-existent JavaScript module. The final filenames in the compiled bundle are generated by Webpack from content hashes. If the file content changes in the future, Webpack will give it a different name in production so you don’t need to worry about long-term caching of assets. Please be advised that this is also a custom feature of Webpack. **It is not required for React** but many people enjoy it (and React Native uses a similar mechanism for images).