1 Star 0 Fork 0

youchen/webpack_study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.dll.js 807 Bytes
一键复制 编辑 原始数据 按行查看 历史
//webpack.config.dll.js
const webpack = require('webpack');
const path = require('path');
module.exports = {
entry: {
react: ['react', 'react-dom']
},
mode: 'production',
output: {
filename: '[name].dll.[hash:6].js',
path: path.resolve(__dirname, 'dist', 'dll'),
library: '[name]_dll' //暴露给外部使用
//libraryTarget 指定如何暴露内容,缺省时就是 var
},
plugins: [
// DllPlugin 和 DLLReferencePlugin 可以实现拆分 bundles(避免JS文件过大),并且可以大大提升构建速度
new webpack.DllPlugin({
//name和library一致
name: '[name]_dll',
path: path.resolve(__dirname, 'dist', 'dll', 'manifest.json') //manifest.json的生成路径
})
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dgutcy/webpack_study.git
git@gitee.com:dgutcy/webpack_study.git
dgutcy
webpack_study
webpack_study
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385