i tried to modify the webpack config with the docu...
# javascript
t
i tried to modify the webpack config with the documented
webpack.config.d
folder, but it doesn seem to have any impact on the resulting
webpack.config.js
what is missing if those files are ignored?
m
So please share your config file here.
t
Copy code
config.optimization = {
    minimize: true,
    minimizer: [
        new TerserPlugin({
            terserOptions: {
                keep_fnames: true
            }
        })
    ]
};
i can't even find
optimization
in the resulting webpack config
m