in NestJS, when I start app app in production mode (so by using obfuscated js file), it logs class names as _0x.....
const WebpackObfuscator = require('webpack-obfuscator');
module.exports = function (options)
{
return {
...options,
devtool: 'inline-source-map',
plugins: [
new WebpackObfuscator({
rotateStringArray: true,
sourceMap: true,
optionsPreset: 'high-obfuscation',
disableConsoleOutput: false,
}, [])
]
}
}
in NestJS, when I start app app in production mode (so by using obfuscated js file), it logs class names as _0x.....
Examples:
Expected Behavior
Current Behavior
Steps to Reproduce
webpack.config.js
Your Environment
Stack trace
Minimal working example that will help to reproduce issue