|
@@ -7,7 +7,7 @@ function resolve(dir) {
|
|
|
|
|
|
const CompressionPlugin = require('compression-webpack-plugin')
|
|
|
|
|
|
-const name = process.env.VUE_APP_TITLE || '若依管理系统' // 网页标题
|
|
|
+const name = process.env.VUE_APP_TITLE || '皖源融资担保管理平台' // 网页标题
|
|
|
|
|
|
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
|
|
|
|
@@ -34,8 +34,11 @@ module.exports = {
|
|
|
open: true,
|
|
|
proxy: {
|
|
|
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
|
|
+ // 'https://rzdb.qs163.cn'
|
|
|
+ // 114.99.127.245
|
|
|
+ // http://192.168.101.245:8056
|
|
|
[process.env.VUE_APP_BASE_API]: {
|
|
|
- target: `http://localhost:8080`,
|
|
|
+ target: `http://192.168.101.168:8056`,
|
|
|
changeOrigin: true,
|
|
|
pathRewrite: {
|
|
|
['^' + process.env.VUE_APP_BASE_API]: ''
|
|
@@ -61,12 +64,11 @@ module.exports = {
|
|
|
plugins: [
|
|
|
// http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
|
|
|
new CompressionPlugin({
|
|
|
- cache: false, // 不启用文件缓存
|
|
|
- test: /\.(js|css|html|jpe?g|png|gif|svg)?$/i, // 压缩文件格式
|
|
|
- filename: '[path][base].gz[query]', // 压缩后的文件名
|
|
|
- algorithm: 'gzip', // 使用gzip压缩
|
|
|
- minRatio: 0.8, // 压缩比例,小于 80% 的文件不会被压缩
|
|
|
- deleteOriginalAssets: false // 压缩后删除原文件
|
|
|
+ cache: false, // 不启用文件缓存
|
|
|
+ test: /\.(js|css|html)?$/i, // 压缩文件格式
|
|
|
+ filename: '[path].gz[query]', // 压缩后的文件名
|
|
|
+ algorithm: 'gzip', // 使用gzip压缩
|
|
|
+ minRatio: 0.8 // 压缩率小于1才会压缩
|
|
|
})
|
|
|
],
|
|
|
},
|
|
@@ -124,7 +126,12 @@ module.exports = {
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
- config.optimization.runtimeChunk('single')
|
|
|
+
|
|
|
+ config.optimization.runtimeChunk('single'),
|
|
|
+ {
|
|
|
+ from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
|
|
|
+ to: './' //到根目录下
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
}
|