I was wondering if anyone knows how to use https on dev for the \'create-react-app\' environment. I can\'t see anything about that in the README or quick googling. I just wa
You can edit your package.json scripts section to read:
"scripts": { "start": "set HTTPS=true&&react-scripts start", ... }
or just run set HTTPS=true&&npm start
set HTTPS=true&&npm start
Just a sidenote, for me, making this change breaks hot reloading for some reason....
-- Note: OS === Windows 10 64-Bit