thana
12/18/2020, 11:17 AMwebpack.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?Marc Knaup
12/18/2020, 11:46 AMthana
12/18/2020, 11:49 AMconfig.optimization = {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
keep_fnames: true
}
})
]
};
thana
12/18/2020, 11:49 AMoptimization
in the resulting webpack configMarc Knaup
12/18/2020, 11:58 AM