react-firebase-starter
react-firebase-starter copied to clipboard
Anybody has tips on using VCCode Chrome Debugging config?
Cannot set breakpoint because of sourcemap?
Thanks
Use inline-source-map in webpack.config.js:
devtool: isDebug ? 'inline-source-map' : false,
launch.json:
"webRoot": "${workspaceRoot}/src"
https://github.com/kriasoft/react-static-boilerplate/issues/225#issuecomment-301387679