1 Star 1 Fork 128

七星瓢虫/thingsboard-ui-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.dll.conf.js 1023 Bytes
一键复制 编辑 原始数据 按行查看 历史
chaining 提交于 2021-04-20 17:03 . 初次提交
const path = require('path')
const webpack = require('webpack')
const CleanWebpackPlugin = require('clean-webpack-plugin')
const { library } = require('./dll.config')
// dll文件存放的目录
const dllPath = 'public/dll'
module.exports = {
entry: library,
output: {
path: path.join(__dirname, dllPath),
filename: '[name].dll.js',
// vendor.dll.js中暴露出的全局变量名
// 保持与 webpack.DllPlugin 中名称一致
library: '[name]_[hash]'
},
plugins: [
// 清除之前的dll文件
new CleanWebpackPlugin(['*.*'], {
root: path.join(__dirname, dllPath)
}),
// 设置环境变量
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: 'production'
}
}),
// manifest.json 描述动态链接库包含了哪些内容
new webpack.DllPlugin({
path: path.join(__dirname, dllPath, '[name]-manifest.json'),
// 保持与 output.library 中名称一致
name: '[name]_[hash]',
context: process.cwd()
})
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/49963270/thingsboard-ui-vue.git
git@gitee.com:49963270/thingsboard-ui-vue.git
49963270
thingsboard-ui-vue
thingsboard-ui-vue
main

搜索帮助