Created by: bmac
This allows users to put a node_modules
folder in src
if they want to use absolute imports
or imitate the webpack resolve.alias
config.
This allows users to put a node_modules
folder in src
if they want to use absolute imports
or imitate the webpack resolve.alias
config.
When experimenting with the src/node_modules
trick mentioned in https://github.com/facebookincubator/create-react-app/issues/1065 I noticed that the dev server wasn't picking up any changes that happened in the src/node_modules
folder. This change makes it so the dev server will correctly notice changes in src/node_modules
and rebuild while still ignoring the node_modules
folder in the root of the project.