加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
pengchunlin 提交于 2020-09-22 09:43 . pcl
const path = require('path');
const webpack = require('webpack')
const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css']
const isProduction = process.env.NODE_ENV === 'production'
const createServerConfig = function(compilation) {
let BASE_API = { BASE_API: process.env.VUE_APP_BASE_API }
return JSON.stringify(BASE_API)
}
function resolve(dir) {
return path.join(__dirname, dir)
}
const name = defaultSettings.title || 'ces系统'
module.exports = {
publicPath:'/appShare/',
productionSourceMap: false,
outputDir: 'dist',
configureWebpack:{
resolve:{
alias:{
'@':path.resolve(__dirname, './src'),
'@i':path.resolve(__dirname, './src/assets'),
}
},
plugins: [
// Ignore all locale files of moment.js
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
// 配置compression-webpack-plugin压缩
new CompressionWebpackPlugin({
algorithm: 'gzip',
test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
threshold: 10240,
minRatio: 0.8
}),
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 5,
minChunkSize: 100
})
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化