vue cli的實用性大家都已經深刻體會過了,但是你有沒有使用過vue cli的dllplugin呢?它可以提高大型項目的構建速度,讓你的應用程序的加載速度更加快速。下面讓我們一起來了解一下dllplugin的使用方法吧!
第一步,首先安裝依賴項:
npm install add-asset-html-webpack-plugin
第二步,在`vue.config.js`文件中進行如下配置:
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') }), new AddAssetHtmlPlugin({ filepath: require.resolve('./public/vendor/vendor.dll.js') }) ] } }
第三步,使用`vue-cli-service build --mode development`命令構建應用程序。由于DllPlugin的使用,這個構建速度會非???!
最后,如果你想使用其他的依賴包進行DllPlugin構建,只需在`vue.config.js`文件中進行如下配置:
const webpack = require('webpack') module.exports = { configureWebpack: { plugins: [ new webpack.DllPlugin({ context: process.cwd(), name: '[name]_library', path: './public/vendor/[name].manifest.json', }), ] } }
總之,如果你的應用程序變得越來越大,使用DllPlugin可以讓你的構建過程更加高效快捷。希望本文能幫助到你,謝謝!
上一篇python 讀終端輸入
下一篇python 數據位數字