We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you set a debugger in the js part of your .vue files, uglifyjs removes it.
The solution for this problem is very simple an I suggest it for the next release. You just have to change line #164 in renderer.js from this:
let { code } = uglify.minify(compiledObject.compiled, { mangle: false });
to this:
let { code } = uglify.minify(compiledObject.compiled, { mangle: false, compress: { drop_debugger: false }});
The text was updated successfully, but these errors were encountered:
can you please try this again with the new webpack-renderer
https://github.com/express-vue/express-vue#migration-to-webpack-renderer
Sorry, something went wrong.
No branches or pull requests
If you set a debugger in the js part of your .vue files, uglifyjs removes it.
The solution for this problem is very simple an I suggest it for the next release.
You just have to change line #164 in renderer.js from this:
to this:
The text was updated successfully, but these errors were encountered: