You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and then i open the Chrome Dev Tools using the url printed in the terminal:
Debugger listening on port 9229.
Warning: This is an experimental feature and could change at any time.
To start debugging, open the following URL in Chrome:
chrome-devtools://devtools/remote/serve_file/@60cd6e859b9f557d2312f5bf532f6aec5f284980/inspector.html?experiments=true&v8only=true&ws=localhost:9229/node
And it works perfectly except the source mapping for my server code. Only, the node_modules are mapped:
Any ideas ?
The text was updated successfully, but these errors were encountered:
Thanks for creating this @gontard. I quickly looked into this and got the same result. I tried using "source-map" instead of "inline-source-map" but that didn't seem to fix it.
Hm, on first look, it looks like my source maps are actually working already in dev + production in Chrome DevTools, so it seems like devtool: 'source-map' is set by default. I did try devtool: 'eval-source-map' for development, and this seemed to work out and produce source maps usable in Chrome, too. Could use some info on reproducing this... I see correct file names + paths in console.log statements, and under sources I see weback://, where my src files are.
Hello and thanks for this tool, it's a huge time-saver.
I use kyt 0.3.0, node 6.7.0 on MacOS Sierra and I want to debug my server code.
I use the dev command with the inspect flag.
kyt dev -- --inspect
and then i open the Chrome Dev Tools using the url printed in the terminal:
And it works perfectly except the source mapping for my server code. Only, the node_modules are mapped:
Any ideas ?
The text was updated successfully, but these errors were encountered: