代码拉取完成,页面将自动刷新
同步操作将从 Baymax/by-vue3-blog 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// const CompressionWebpackPlugin = require('compression-webpack-plugin'); // gzip 压缩
// const productionGzipExtensions = ['js', 'html', 'css'];
// 代码压缩
const IS_PROD = process.env.NODE_ENV === 'production';
let appName = process.argv.slice(0)[3].replace('--', '');
let outputPath = appName === 'home' ? 'home' : 'admin'
module.exports = {
// 由于部分插件,导致ie下空白
transpileDependencies: ['vue-savedata', 'vue-baberrage'],
//运行目录:开发环境:都在根目录。生产环境,前台在根目录,后台在子目录下运行
publicPath: IS_PROD ? outputPath == 'home' ? '/' : '../' + outputPath + '/' : '/',
// 输出目录,
outputDir: '../' + outputPath,
//多页面配置
pages: {
//此处因为要前后台分开打包,所以要注释
// about: {
// entry: 'src/pages/admin/main.js',
// template: 'public/admin.html',
// filename: 'admin.html',
// chunks: ['chunk-vendors', 'chunk-common', 'about'],
// title: 'BAYMAX后台管理'
// },
index: {
entry: 'src/pages/' + appName + '/main.js',
template: `public/${appName}.html`,
filename: 'index.html',
chunks: ["chunk-vendors", "chunk-common", "index", 'runtime~index'],
title: appName === 'home' ? '云墨白博客-记录时光,分享点滴' : 'BAYMAX后台管理'
}
},
devServer: {
sockHost: "localhost",
disableHostCheck: true,
port: 8080, // 端口号
host: "0.0.0.0",
https: false, // https:{type:Boolean}
open: true, //配置自动启动浏览器
proxy: {
"/apis": {
// target: "http://127.0.0.1:80/api/v1", // 需要请求的地址
target: process.env.VUE_APP_API_URL, // 需要请求的地址
changeOrigin: true, // 是否跨域
pathRewrite: {
"^/apis": "" // 替换target中的请求地址,也就是说,在请求的时候,url用'/proxy'代替'http://ip.taobao.com'
}
},
"/music": {
target: "https://music.liuzhijin.cn", // 需要请求的地址
// target: process.env.VUE_APP_URL, // 需要请求的地址
changeOrigin: true, // 是否跨域
pathRewrite: {
"^/music": "" // 替换target中的请求地址,也就是说,在请求的时候,url用'/proxy'代替'http://ip.taobao.com'
}
},
"/english": {
target: "http://sentence.iciba.com", // 需要请求的地址
// target: process.env.VUE_APP_URL, // 需要请求的地址
changeOrigin: true, // 是否跨域
pathRewrite: {
"^/english": "" // 替换target中的请求地址,也就是说,在请求的时候,url用'/proxy'代替'http://ip.taobao.com'
}
},
}
},
productionSourceMap: !IS_PROD,
configureWebpack: config => {
// 用cdn方式引入,则构建时要忽略相关资源
config.externals = {
"echarts": "echarts",
};
if (IS_PROD) {
//gzip压缩
// config.plugins.push(new CompressionWebpackPlugin({
// algorithm: 'gzip',
// test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'), //匹配文件名
// threshold: 10240, //对超过10k的数据进行压缩
// minRatio: 0.8,
// deleteOriginalAssets: false //是否删除原文件
// }));
// 代码压缩
config.optimization.minimizer[0].options.terserOptions.compress.warnings = false
config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
config.optimization.minimizer[0].options.terserOptions.compress.drop_debugger = true
config.optimization.minimizer[0].options.terserOptions.compress.pure_funcs = ['console.log']
}
},
chainWebpack: config => {
if (IS_PROD) {
config.plugins.delete('prefetch')
// 压缩代码
config.optimization.minimize(true);
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。