1 Star 0 Fork 64

李博/体检软件(前端)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 2.23 KB
一键复制 编辑 原始数据 按行查看 历史
dengjie 提交于 2022-07-15 15:58 . 项目初始化
const CompressionPlugin = require('compression-webpack-plugin');
module.exports = {
devServer: {
host: '0.0.0.0',
port: 9120,
proxy: {
'/scmt': {
target: 'https://192.168.1.147:8888',
changeOrigin: true,
pathRewrite: {
'^/scmt': 'scmt'
},
ws: true
},
'/lis': {
target: 'http://127.0.0.1:8887',
changeOrigin: true,
ws: true,
pathRewrite: {
'^/lis': 'lis'
}
},
'/tempFileUrl': {
target: 'http://127.0.0.1:8807',
ws: true,
pathRewrite: {
'^/tempFileUrl': ''
}
},
'/foo': {
target: '<other_url>'
},
'/spiderUrl':{
target: 'http://192.168.1.88:8088',
ws: true,
pathRewrite: {
'^/spiderUrl': ''
}
}
},
// 此处开启 https
https: true
},
// 打包时不生成.map文件 避免看到源码
productionSourceMap: false,
// 部署优化
configureWebpack: {
// 使用CDN
// externals: {
// vue: 'Vue',
// 'vue-i18n': 'VueI18n',
// axios: 'axios',
// 'vue-router': 'VueRouter',
// vuex: 'Vuex',
// 'view-design': 'iview',
// echarts: 'echarts',
// apexcharts: 'ApexCharts',
// 'vue-apexcharts': 'VueApexCharts',
// dplayer: 'DPlayer',
// 'print-js': 'printJS',
// html2canvas: 'html2canvas',
// 'vue-json-pretty': 'VueJsonPretty',
// 'vue-lazyload': 'VueLazyload',
// 'js-cookie': 'Cookies',
// vuedraggable: 'vuedraggable',
// viewerjs: 'Viewer'
// },
// GZIP压缩
plugins: [
new CompressionPlugin({
test: /\.js$|\.html$|\.css/, // 匹配文件
threshold: 10240 // 对超过10k文件压缩
})
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/libo8/healthyCheck-ui.git
git@gitee.com:libo8/healthyCheck-ui.git
libo8
healthyCheck-ui
体检软件(前端)
master

搜索帮助