externals

文章目录

将npm包移到cdn中

<!-- html中引入jquery -->
<script src="//code.jquery.com/jquery-3.1.0.js"></script>
module.exports = {
...
externals: {
jquery: 'jQuery'
}
}
// 源码
import jquery from 'jquery';
// 打包后
const jquery = window.jQuery;