You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Already described for SwcCssMinimizerRspackPlugin: #6898
I need to disable minification of third-party library files that are simply copied to build.
I managed to prevent minification of the JS using the exclude option, but it seems that the option for the CSS minifier has not yet been implemented.
What does the proposed API of configuration look like?
optimization: {minimizer: [newSwcJsMinimizerRspackPlugin({exclude: /^assets\//}),// <-- this is worksnewLightningCssMinimizerRspackPlugin({exclude: /^assets\//}),// <-- this doesn't exist],}
The text was updated successfully, but these errors were encountered:
What problem does this feature solve?
Already described for
SwcCssMinimizerRspackPlugin
: #6898I need to disable minification of third-party library files that are simply copied to build.
I managed to prevent minification of the JS using the exclude option, but it seems that the option for the CSS minifier has not yet been implemented.
What does the proposed API of configuration look like?
The text was updated successfully, but these errors were encountered: