例如项目中使用从 CDN 引入 jQuery,而不是把它打包进来使用
import $ from 'jquery'
webpack.config.js
externals: {
jquery: 'jQuery'
}