1 Star 0 Fork 0

Selena_Wu/idaas-uc-front

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 2.41 KB
一键复制 编辑 原始数据 按行查看 历史
xiyao.wu1 提交于 2024-03-12 15:56 . idaas uc
/*
* @Author: Hwc
* @LastEditors: wangkg wangkegui@longfor.com
* @Description:
*/
const { name } = require('./package');
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
lintOnSave: false,
publicPath: '/',
configureWebpack: {
entry: './src/main.js',
resolve: {
alias: {
'@': resolve('src'),
'@lib': resolve('src/lib'),
'@utils': resolve('src/utils/'),
'@config': resolve('src/config'),
'@constants': resolve('src/constants'),
'@components': resolve('src/components/'),
'@styles': resolve('src/styles/'),
}
},
output: {
// library: `${name}-[name]`,
library: 'application-preview',
// 把微应用打包成 umd 库格式
libraryTarget: 'umd',
// jsonpFunction: `webpackJsonp_${name}`,
chunkLoadingGlobal: `webpackJsonp_${name}`,
},
},
devServer: {
port: '8888',
host: 'localhost',
headers: {
//跨域支持
'Access-Control-Allow-Origin': '*',
},
open: true,
// client: {
// logging: 'info',
// },
proxy: {
// '/api/v1/app': {
// target: 'http://90ji.com:8888',
// // 需要websocket 开启
// ws: false,
// pathRewrite: { '^/api/v1/app': '/api/v1/app' },
// // 开启代理,在本地创建一个虚拟服务端
// changeOrigin: true,
// },
// '/api/v1': {
// target: 'http://90ji.com:8888',
// // 需要websocket 开启
// ws: false,
// pathRewrite: { '^/api/v1': '/v1' },
// // 开启代理,在本地创建一个虚拟服务端
// changeOrigin: true,
// },
'/idaas-uc-service': {
target: 'http://10.64.16.142:18080',
// target: 'http://90ji.com:8888/',
// 需要websocket 开启
ws: false,
changeOrigin: true,
pathRewrite: {
'^/idaas-uc-service': '/idaas-uc-service',
},
},
}
// before: require('./mock/mock-server.js')
},
chainWebpack: (config) => {
config.module
.rule('svg')
.exclude.add(resolve('src/icons/svgs'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons/svgs'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'lc_[name]'
})
.end()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/selena_x_wu/idaas-uc-front.git
git@gitee.com:selena_x_wu/idaas-uc-front.git
selena_x_wu
idaas-uc-front
idaas-uc-front
dev

搜索帮助