const path = require('path')
const webpack = require('webpack')
const package = require('../package.json')
const ParallelUglifyPlugin = require('webpack-parallel-uglify-plugin') //若是沒安裝過,須要安裝一下
module.exports = {
entry: {
vendor:Object.keys(package.dependencies).filter((item) => {
return item !='vue'
})
},
output: {
path: path.join(__dirname, '../static'),
filename: 'dll.[name]_[hash:6].js',
library: '[name]_[hash:6]',
},
plugins: [
new ParallelUglifyPlugin({
cacheDir: '.cache/',
uglifyJS:{
output: {
comments: false
},
compress: {
warnings: false,
drop_debugger: true,
drop_console: true
}
}
}),
new webpack.DllPlugin({
path: path.join(__dirname, '../', '[name]-manifest.json'),
name: '[name]_[hash:6]'
})
]
}
複製代碼
const manifest = require('../vendor-manifest.json')
module.exports={
<!--去掉原來的vender字段-->
entry: {
app: './src/main.js'
},
plugins: [
new webpack.DllReferencePlugin({
manifest:manifest
}),
]
}
複製代碼
"scripts":{
"build:dll": "webpack --config build/webpack.dll.config.js -p"
}
複製代碼
跑完以後,生成 vender-manifest.json 和 dll.vendor.js 文件html
在index.html中 引入vue
<script src="/static/dll.vendor.js"></script>
複製代碼
以上都完成以後,之後打包npm run build 的時候就能夠不打包引入的第三方插件,由於已經提早打包好了,能夠提升一點打包速度。webpack