Angular/Webpack is leaving "comments" on production (dist folder) code referencing development directories which include my username.
Example:
- main.js:
module.exports = webpack_require(/*! C:\Users\cristian.abelleira\myproject\src\main.ts */"./src/main.ts");
How can I prevent this behaviour?
Note: I used "ng build" command to generate /dist folder
angular.js: https://gist.github.com/CrAbelleira/11c2eb2d25ade5a7ac7bf34d0b8e7952
CodePudding user response:
I found the problem. It was a misconfiguration that was preventing the command "ng build --configuration production" to be executed with the "--configuration production" flag properly.
After compiling with this flag, the references dissapeared.