Fix grammar error in troubleshooting.md (#7824)

This commit is contained in:
Jake Boone
2019-10-14 17:30:04 -07:00
committed by Ian Schmitz
parent 4a4ae1ef81
commit 81c48dc300

View File

@@ -9,7 +9,7 @@ sidebar_label: Troubleshooting
When you save a file while `npm start` is running, the browser should refresh with the updated code.<br>
If this doesnt happen, try one of the following workarounds:
- Check that your file is imported by you entrypoint. TypeScript will show errors on any of your source files, but webpack only reloads your files if they are directly or indirectly imported by one of your entrypoints.
- Check that your file is imported by your entrypoint. TypeScript will show errors on any of your source files, but webpack only reloads your files if they are directly or indirectly imported by one of your entrypoints.
- If your project is in a Dropbox folder, try moving it out.
- If the watcher doesnt see a file called `index.js` and youre referencing it by the folder name, you [need to restart the watcher](https://github.com/facebook/create-react-app/issues/1164) due to a Webpack bug.
- Some editors like Vim and IntelliJ have a “safe write” feature that currently breaks the watcher. You will need to disable it. Follow the instructions in [“Adjusting Your Text Editor”](https://webpack.js.org/guides/development/#adjusting-your-text-editor).