vue3中vue.config.js配置及注釋詳解
報錯


asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
This can impact web performance.
entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
Entrypoints:
打包時提示文件過大,配置解決方案,如下
直接設(shè)置文件的壓縮率就可以
//核心代碼
configureWebpack: (config) => {
if (process.env.NODE_ENV === 'production') {// 為生產(chǎn)環(huán)境修改配置...
config.mode = 'production';
config["performance"] = {//打包文件大小配置
"maxEntrypointSize": 10000000,
"maxAssetSize": 30000000
}
}
}
上代碼:
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
assetsDir: 'static',
productionSourceMap: false,
chainWebpack: config => {
config.resolve.alias
.set('@', resolve('src'))
.set('assets', resolve('src/assets'))
.set('components', resolve('src/components'))
},
configureWebpack: (config) => {
if (process.env.NODE_ENV === 'production') {// 為生產(chǎn)環(huán)境修改配置...
config.mode = 'production';
config["performance"] = {//打包文件大小配置
"maxEntrypointSize": 10000000,
"maxAssetSize": 30000000
}
}
}
})
還有一種方法就是對其進行壓縮
安裝依賴
npm install compression-webpack-plugin --save-dev
在vue.config.js中引用
const CompressionWebpackPlugin = require("compression-webpack-plugin");
配置壓縮文件
datav-vue:一個基于Vuejs3的數(shù)據(jù)可視化(DataV)項目下載地址:點擊這里
const productionGzipExtensions = ["js", 'css'];
配置對超過大小文件進行壓縮
new CompressionWebpackPlugin({
filename: "[path][base].gz",
algorithm: "gzip",
test: new RegExp("\\.(" + productionGzipExtensions.join("|") + ")$"), //匹配文件名
threshold: 10240, //對10K以上的數(shù)據(jù)進行壓縮
minRatio: 0.8,
deleteOriginalAssets: false //是否刪除源文件
})
下面時完整代碼
const { defineConfig } = require('@vue/cli-service')
const path = require('path');
const CompressionWebpackPlugin = require("compression-webpack-plugin"); // 開啟gzip壓縮, 按需引用
const productionGzipExtensions = /\.(js|css|json|txt|html|ico|svg)(\?.*)?$/i; // 開啟gzip壓縮, 按需寫入
const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV);
const resolve = (dir) => path.join(__dirname, dir);
const TerserPlugin = require('terser-webpack-plugin')//去除多余的console.log
module.exports = defineConfig({
transpileDependencies: true,
assetsDir: 'static',
productionSourceMap: false,
integrity: true,
crossorigin: undefined,
chainWebpack: config => {
config.resolve.symlinks(true); // 修復熱更新失效
// 如果使用多頁面打包,使用vue inspect --plugins查看html是否在結(jié)果數(shù)組中
config.plugin("html").tap(args => {
// 修復 Lazy loading routes Error
args[0].chunksSortMode = "none";
return args;
});
config.resolve.alias // 添加別名
.set('@', resolve('src'))
.set('@assets', resolve('src/assets'))
.set('@components', resolve('src/components'))
.set('@views', resolve('src/views'))
.set('@store', resolve('src/store'));
// 壓縮圖片
// 需要 npm i -D image-webpack-loader
config.module
.rule("images")
.use("image-webpack-loader")
.loader("image-webpack-loader")
.options({
mozjpeg: { progressive: true, quality: 65 },
optipng: { enabled: false },
pngquant: { quality: [0.65, 0.9], speed: 4 },
gifsicle: { interlaced: false },
webp: { quality: 75 }
});
},
configureWebpack: (config) => {
// 開啟 gzip 壓縮
// 需要 npm i -D compression-webpack-plugin
const plugins = [];
if (IS_PROD) {
plugins.push(
new CompressionWebpackPlugin({
filename: '[path].gz[query]',
algorithm: 'gzip',
test: productionGzipExtensions,
threshold: 10240,//大于10k的進行壓縮
minRatio: 0.8,
})
);
plugins.push(
//打包環(huán)境去掉console.log等
new TerserPlugin({
terserOptions: {
ecma: undefined,
warnings: false,
parse: {},
compress: {
drop_console: true,
drop_debugger: false,
pure_funcs: ['console.log'], // 移除console
},
},
}),
);
}
config.plugins = [...config.plugins, ...plugins];
},
})
我這個是最方法,大家可以復制到自己的項目中直接使用,我的是5.x的webpack,同類型版本的可以直接使用 需要nginx也配合使用壓縮,開啟全局http壓縮
gzip off; gzip_static on; gzip_min_length 10k; gzip_buffers 4 16k; gzip_comp_level 6; gzip_types application/javascript application/css text/css text/javascript; gzip_disable "MSIE [1-6]\."; gzip_vary on;
這種方法是最優(yōu)方法真正的考慮性能用的,上面的第一種方法只是讓其不提示了而已,不會去考慮性能問題
vue.config.js配置詳解注釋
// vue.config.js
const path = require('path');
const CompressionWebpackPlugin = require("compression-webpack-plugin"); // 開啟gzip壓縮, 按需引用
const productionGzipExtensions = /\.(js|css|json|txt|html|ico|svg)(\?.*)?$/i; // 開啟gzip壓縮, 按需寫入
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin; // 打包分析
const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV);
const resolve = (dir) => path.join(__dirname, dir);
//用于生產(chǎn)環(huán)境去除多余的css
const PurgecssPlugin = require("purgecss-webpack-plugin");
//全局文件路徑
const glob = require("glob-all");
//壓縮代碼并去掉console
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? '/site/vue-demo/' : '/', // 公共路徑
indexPath: 'index.html' , // 相對于打包路徑index.html的路徑
outputDir: process.env.outputDir || 'dist', // 'dist', 生產(chǎn)環(huán)境構(gòu)建文件的目錄
assetsDir: 'static', // 相對于outputDir的靜態(tài)資源(js、css、img、fonts)目錄
lintOnSave: false, // 是否在開發(fā)環(huán)境下通過 eslint-loader 在每次保存時 lint 代碼
runtimeCompiler: true, // 是否使用包含運行時編譯器的 Vue 構(gòu)建版本
productionSourceMap: !IS_PROD, // 生產(chǎn)環(huán)境的 source map
parallel: require("os").cpus().length > 1, // 是否為 Babel 或 TypeScript 使用 thread-loader。該選項在系統(tǒng)的 CPU 有多于一個內(nèi)核時自動啟用,僅作用于生產(chǎn)構(gòu)建。
pwa: {}, // 向 PWA 插件傳遞選項。
chainWebpack: config => {
config.resolve.symlinks(true); // 修復熱更新失效
// 如果使用多頁面打包,使用vue inspect --plugins查看html是否在結(jié)果數(shù)組中
config.plugin("html").tap(args => {
// 修復 Lazy loading routes Error
args[0].chunksSortMode = "none";
return args;
});
config.resolve.alias // 添加別名
.set('@', resolve('src'))
.set('@assets', resolve('src/assets'))
.set('@components', resolve('src/components'))
.set('@views', resolve('src/views'))
.set('@store', resolve('src/store'));
// 壓縮圖片
// 需要 npm i -D image-webpack-loader
config.module
.rule("images")
.use("image-webpack-loader")
.loader("image-webpack-loader")
.options({
mozjpeg: { progressive: true, quality: 65 },
optipng: { enabled: false },
pngquant: { quality: [0.65, 0.9], speed: 4 },
gifsicle: { interlaced: false },
webp: { quality: 75 }
});
// 打包分析, 打包之后自動生成一個名叫report.html文件(可忽視)
if (IS_PROD) {
config.plugin("webpack-report").use(BundleAnalyzerPlugin, [
{
analyzerMode: "static"
}
]);
}
},
configureWebpack: config => {
// 開啟 gzip 壓縮
// 需要 npm i -D compression-webpack-plugin
const plugins = [];
if (IS_PROD) {
plugins.push(
new CompressionWebpackPlugin({
filename: "[path].gz[query]",
algorithm: "gzip",
test: productionGzipExtensions,
threshold: 10240,
minRatio: 0.8
})
);
//啟用代碼壓縮
plugins.push(
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false,
drop_console: true,
drop_debugger: false,
pure_funcs: ["console.log"] //移除console
}
},
sourceMap: false,
parallel: true
})
);
//去掉不用的css 多余的css
plugins.push(
new PurgecssPlugin({
paths: glob.sync([path.join(__dirname, "./**/*.vue")]),
extractors: [
{
extractor: class Extractor {
static extract(content) {
const validSection = content.replace(
/<style([\s\S]*?)<\/style>+/gim,
""
);
return validSection.match(/[A-Za-z0-9-_:/]+/g) || [];
}
},
extensions: ["html", "vue"]
}
],
whitelist: ["html", "body"],
whitelistPatterns: [/el-.*/],
whitelistPatternsChildren: [/^token/, /^pre/, /^code/]
})
);
}
config.plugins = [...config.plugins, ...plugins];
},
css: {
extract: IS_PROD,
requireModuleExtension: false,// 去掉文件名中的 .module
loaderOptions: {
// 給 less-loader 傳遞 Less.js 相關(guān)選項
less: {
// `globalVars` 定義全局對象,可加入全局變量
globalVars: {
primary: '#333'
}
}
}
},
devServer: {
overlay: { // 讓瀏覽器 overlay 同時顯示警告和錯誤
warnings: true,
errors: true
},
host: "localhost",
port: 8080, // 端口號
https: false, // https:{type:Boolean}
open: false, //配置自動啟動瀏覽器
hotOnly: true, // 熱更新
// proxy: 'http://localhost:8080' // 配置跨域處理,只有一個代理
proxy: { //配置多個跨域
"/api": {
target: "http://172.11.11.11:7071",
changeOrigin: true,
// ws: true,//websocket支持
secure: false,
pathRewrite: {
"^/api": "/"
}
},
"/api2": {
target: "http://172.12.12.12:2018",
changeOrigin: true,
//ws: true,//websocket支持
secure: false,
pathRewrite: {
"^/api2": "/"
}
},
}
}
}
總結(jié)
到此這篇關(guān)于vue3中vue.config.js配置及注釋詳解的文章就介紹到這了,更多相關(guān)vue3 vue.config.js配置詳解內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Echarts+VUE柱狀圖繪制細節(jié)并且屏幕自適應(yīng)完整代碼
柱狀圖(或稱條形圖)是一種通過柱形的長度來表現(xiàn)數(shù)據(jù)大小的一種常用圖表類型,這篇文章主要給大家介紹了關(guān)于Echarts+VUE柱狀圖繪制細節(jié)并且屏幕自適應(yīng)的相關(guān)資料,需要的朋友可以參考下2024-02-02
解決vue打包報錯Unexpected token: punc的問題
這篇文章主要介紹了解決vue打包報錯Unexpected token: punc的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-10-10
vue使用better-scroll實現(xiàn)橫向滾動的方法實例
這幾天研究項目時,看到了 better-scroll 插件,看著感覺功能挺強,這篇文章主要給大家介紹了關(guān)于vue使用better-scroll實現(xiàn)橫向滾動的相關(guān)資料,需要的朋友可以參考下2021-06-06
vue-cli+axios實現(xiàn)文件上傳下載功能(下載接收后臺返回文件流)
這篇文章主要介紹了vue-cli+axios實現(xiàn)文件上傳下載功能(下載接收后臺返回文件流),本文通過實例代碼給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下2019-05-05

