防止将某些包打包到我们的bundle中,比如希望jquery依赖通过CDN依赖引入
修改 webpack.config.js
//引用Node.js中的path模块,处理文件路径的小工具
const path = require("path");
//引入插件
const HtmlwebpackPlugin = require("html-webpack-plugin")
// 导出一个webpack具有特殊属性配置的对象
module.exports = {
mode: "development" ,
//多入口
entry: "./src/js/index.js" ,
//出口是对象
output: {
//path是一个绝对路径,__dirname 是当前js的绝对路径
path: path.join(__dirname , "./dist/"), //打包的结果文件存储目录
filename : "built.js" //打包的结果文件名
},
//配置插件
plugins: [
new HtmlwebpackPlugin({
//此插件作用是将 index.html打包到bundle.js所在目录中
//同时会在 index.html中自动的在<script>引入 bundle.js
template : "./src/index.html"
})
],
externals:{
// 忽略jQuery包打印进来
jquery: "jQuery"
}
}
修改 index.js `` import $ from 'jquery'
console.log($)
修改 index.html ,在网上找一个免费的jQuery CDN
<script src="https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script>
```
在运行 `npm run build`,查看打印信息。在查看 打包后的 index.html查看jquery是否打印测试信息。
关于作者
王硕,网名信平,十多年软件开发经验,业余架构师,精通Java/Python/Go等,喜欢研究技术,著有《PyQt 5 快速开发与实战》《Python 3.* 全栈开发》,多个业余开源项目托管在GitHub上,欢迎微博交流。