這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)怎么在vue-cli3中利用DllPlugin 提取公用庫,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)新互聯(lián)建站主營坡頭網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā)公司,坡頭h5成都小程序開發(fā)搭建,坡頭網(wǎng)站營銷推廣歡迎坡頭等地區(qū)企業(yè)咨詢
1、安裝相關(guān)插件
yarn add webpack-cli@^3.2.3 add-asset-html-webpack-plugin@^3.1.3 clean-webpack-plugin@^1.0.1 --dev
2、編寫配置文件
在項目根目錄下新建 webpack.dll.conf.js
,輸入以下內(nèi)容。
const path = require('path') const webpack = require('webpack') const CleanWebpackPlugin = require('clean-webpack-plugin') // dll文件存放的目錄 const dllPath = 'public/vendor' module.exports = { entry: { // 需要提取的庫文件 vendor: ['vue', 'vue-router', 'vuex', 'axios', 'element-ui'] }, 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) }), // 設(shè)置環(huán)境變量 new webpack.DefinePlugin({ 'process.env': { NODE_ENV: 'production' } }), // manifest.json 描述動態(tài)鏈接庫包含了哪些內(nèi)容 new webpack.DllPlugin({ path: path.join(__dirname, dllPath, '[name]-manifest.json'), // 保持與 output.library 中名稱一致 name: '[name]_[hash]', context: process.cwd() }) ] }
3、生成 dll
在 package.json 中加入如下命令
"scripts": { ... "dll": "webpack -p --progress --config ./webpack.dll.conf.js" },
控制臺運行
yarn run dll
4、忽略已編譯文件
為了節(jié)約編譯的時間,這時間我們需要告訴 webpack 公共庫文件已經(jīng)編譯好了,減少 webpack 對公共庫的編譯時間。在項目根目錄下找到 vue.config.js ( 沒有則新建 ),配置如下:
const webpack = require('webpack') module.exports = { ... configureWebpack: { plugins: [ new webpack.DllReferencePlugin({ context: process.cwd(), manifest: require('./public/vendor/vendor-manifest.json') }) ] } }
5、index.html 中加載生成的 dll 文件
經(jīng)過上面的配置,公共庫提取出來了,編譯速度快了,但如果不引用生成的 dll 文件,網(wǎng)頁是不能正常工作的。
打開 public/index.html,插入 script 標(biāo)簽。
...
到此公用庫提取完成,但總覺得最后一部手工插入 script 不太優(yōu)雅,下面介紹下如何自動引入生成的 dll 文件。
打開 vue.config.js 在 configureWebpack plugins
節(jié)點下,配置 add-asset-html-webpack-plugin
const path = require('path') const webpack = require('webpack') const AddAssetHtmlPlugin = require('add-asset-html-webpack-plugin')
module.exports = { ... configureWebpack: { plugins: [ new webpack.DllReferencePlugin({ context: process.cwd(), manifest: require('./public/vendor/vendor-manifest.json') }), // 將 dll 注入到 生成的 html 模板中 new AddAssetHtmlPlugin({ // dll文件位置 filepath: path.resolve(__dirname, './public/vendor/*.js'), // dll 引用路徑 publicPath: './vendor', // dll最終輸出的目錄 outputPath: './vendor' }) ] } }
上述就是小編為大家分享的怎么在vue-cli3中利用DllPlugin 提取公用庫了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。