-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
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
Documentation should be explicit about the default configs for development and production modes #2080
Comments
Full and exact configuration are described in https://webpack.js.org/concepts/mode/#usage How do you think the documentation should be? |
@montogeek - I believe the OP is referring to things like these defaults, which are not documented anywhere other than in the source (I had to resort to the source too; so I agree with the OP's point): |
@edmorley Thanks for clarification, I agree, we should add complete documentation for all the options used by these plugins. Send a PR. |
@edmorley thanks for your help; indeed, that is what I mean |
There's also the devtool setting, which is automatically set to 'eval' in development mode. |
Do you want to request a feature or report a bug?
documentation
What is the current behavior?
I've spent quite some time trying to figure out what is the exact configuration that is used when
mode
is set toproduction
, but haven't found a clear answer yet.I need to tweak a single config option (
collapse_vars
) for theUglifyJsPlugin
and, as far as I see, there is no way to do it, except for settingmode
tonone
and explicitly re-defining the whole production config, having the only difference from the defaultproduction
config thatUglifyJsPlugin.uglifyOptions.collapse_vars = false
. But how do I know the default production config? I can't find it in the documentation, so I'm trying to find this out by trial and errors, which is totally counter-productive.If the current behavior is a bug, please provide the steps to reproduce.
What is the expected behavior?
It would be great if on this page https://webpack.js.org/concepts/mode/, instead of some weird diffs there were full and exact configs that are equivalent to setting
mode
todevelopment
orproduction
.If this is a feature request, what is motivation or use case for changing the behavior?
The user should be able to easily copy-and-paste the default config and tweak it to their needs.
Please mention other relevant information such as the browser version, Node.js version, webpack version, and Operating System.
This issue has been copied from webpack/webpack#7123 (comment)
The text was updated successfully, but these errors were encountered: