How webpack does not compile the specified folder

clipboard.png
Zeroclipboard.js

clipboard.png
webpackUglifyJSPlugin{exclude: //}

clipboard.png
I configured the above in webpack.config.js. How can we keep it from being compiled and changed?

Mar.12,2021

copy-webpack-plugin learn about github links


   js/node_modules/
    {
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
    },
Menu