kitze / custom-react-scripts

[DEPRECATED, use customize-cra] Allow custom config for create-react-app without ejecting
https://custom-react-scripts.netlify.com
MIT License
993 stars 97 forks source link

Does not work anymore #104

Open janterlaak opened 7 years ago

janterlaak commented 7 years ago

after installation and creating a project

yarn start

/Users/j/test/myapp/node_modules/custom-react-scripts/scripts/start.js:21 throw err; ^

RangeError: Invalid string length at Object.stringify (native) at serializeMap (/Users/j/test/myapp/node_modules/inspectpack/lib/utils/cache.js:26:15) at getCacheFilePath.then.filePath (/Users/janterlaak/test/myapp/node_modules/inspectpack/lib/utils/cache.js:93:27) error Command failed with exit code 1.$

janterlaak commented 7 years ago

Removing the last line from the .env file does the trick

OshotOkill commented 7 years ago

Got the same error too:

2017-09-14 5 37 44

It suddenly happened while coding. It's really weird since I don't do anything to package.json or any configuration files. I commented most of my code and only left index.js, however the error still happened.

janterlaak commented 7 years ago

Open your .env file and remove the last line of the configutation. Save the file and run again

OshotOkill commented 7 years ago

@janterlaak That works.

I dig out a lot bit more and find out the real problem is REACT_APP_WEBPACK_DASHBOARD in .env file. It seems the internal module inspectpack is broken somehow and effects the webpack dashboard. After remove it the dev-server would work fine.