github.com/easysoft/zendata@v0.0.0-20240513203326-705bd5a7fd67/client/webpack.main.config.js (about)

     1  const CopyPlugin = require("copy-webpack-plugin");
     2  
     3  module.exports = {
     4    entry: './src/main.js',
     5    module: {
     6      rules: require('./webpack.rules'),
     7    },
     8    plugins: [
     9        new CopyPlugin({
    10          patterns: [{ from: "./icon", to: "icon" }]
    11        })
    12    ],
    13  };