1 Star 0 Fork 1

zfshen/HomeWorkFE

forked from li1553770945/HomeWorkFE 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
Kirigaya 提交于 2022-03-29 22:03 . 完成compress压缩进行首屏优化
const isProduction = process.env.NODE_ENV !== 'development';
const CompressionWebpackPlugin = require('compression-webpack-plugin')
module.exports = {
lintOnSave : false,
devServer: {
proxy : {
"/api" : {
target : "http://117.51.141.73"
// target : "http://localhost:8001"
}
}
},
publicPath : "/",
productionSourceMap: false,
css : {
sourceMap : false
},
configureWebpack: config => {
if (isProduction) {
const productionGzipExtensions = ['html', 'js', 'css']
config.plugins.push(
new CompressionWebpackPlugin({
filename: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' + productionGzipExtensions.join('|') + ')$'
),
threshold: 10240,
minRatio: 0.8,
deleteOriginalAssets: false
})
)
}
},
chainWebpack: config => {
let configpkg
if (isProduction)
configpkg = {
vue: 'Vue',
vuex : 'Vuex',
'vue-router': 'VueRouter',
'axios':'axios',
'element-plus': 'ElementPlus',
}
else {
configpkg = {}
}
config.set('externals', configpkg)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zfshen/home-work-fe.git
[email protected]:zfshen/home-work-fe.git
zfshen
home-work-fe
HomeWorkFE
master

搜索帮助