text-encoding is introduced into my code and third-party libraries. Can you package it together?
now I can only introduce my own package together.
  
text-encoding is introduced into my code and third-party libraries. Can you package it together?
now I can only introduce my own package together.
configure optimization. For example, I typed all the plug-ins used for upload to
. optimization: {
    runtimeChunk: {
      name: 'manifest'
    },
    splitChunks: {
      maxInitialRequests: 10,
      cacheGroups: {
       // upload.js
        cosUpload: {
          test: /(cosUploadUtil|exif|lrz.all.bundle|qcloud_sdk)/,
          name: 'upload',
          chunks: 'initial',
          minChunks: 1
        }
      }
    }
  },Previous: How to remove the bottom frame of el-table?
Next: How does html implement this border style, with text displayed in the middle of the border?
there are now two entry files --src |--- a.js |--- b.js a.js class Test{ constructor(){ this.a = 123; } show = ()=>{ console.log(this.a) } } export default new Test(); b.js import ". a" webapck...