代码拉取完成,页面将自动刷新
/*
* @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()
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。