Manual Testing With Webpack Modules
This is a follow up question for my previous question: Basically, webpack would solve the issue I am having in the previous question, but I can't figure out a good way to be able t
Solution 1:
you can use webpack for debugging your application in development environment. Webpack provided a watcher to re-bundle your source code at any change, from memory the command is --inline hot
. For your second problem search about sourceMap
webpack provided you an access to your source code whenever it is bundled.
https://ehsangazar.com/source-maps-and-how-it-works-b3f93ca7ea5 => article about webpack sourcemap
Post a Comment for "Manual Testing With Webpack Modules"