I deploy a node.js app on pm2 server which serves my client code with Nginx. My client source code is bundled with Webpack. It is supposed to be minified and obfuscated. But when I run my app on client side and I open the console log "source" tab I can see both the obfuscated source code and the webpack file structure which is located under a "top://Webpack" directory.
I don't want to show my code structure to the client. How can I get rid of that webpack file structure on the browser?