Merge branch 'develop' into 'master'
fix: 区分本地和线上打包 See merge request web-project/aircraft-carrier-fleet!5
This commit is contained in:
commit
4d81b07107
35
src/app.ts
35
src/app.ts
@ -16,29 +16,38 @@ export function useQiankunStateForSlave() {
|
||||
};
|
||||
}
|
||||
|
||||
const env = process.env.NODE_ENV;
|
||||
|
||||
export const qiankun = {
|
||||
apps: [
|
||||
{
|
||||
name: 'intelligent-file-cabinet', // 盒子管理
|
||||
entry: '//localhost:30068/intelligent-file-cabinet/',
|
||||
props: {
|
||||
accountInfo: {
|
||||
username: 'admin',
|
||||
password: 'test123',
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'smart-video-analysis', // AI 智能分析仓
|
||||
entry: '//localhost:30088/smart-video-analysis/',
|
||||
entry:
|
||||
env === 'production'
|
||||
? '//localhost:30068/intelligent-file-cabinet/'
|
||||
: '//localhost:30068/',
|
||||
props: {},
|
||||
},
|
||||
{
|
||||
name: 'algorithm-warehouse', // AI 算法分析
|
||||
entry: '//localhost:30078/algorithm-warehouse/',
|
||||
entry:
|
||||
env === 'production'
|
||||
? '//localhost:30078/smart-video-analysis/'
|
||||
: '//localhost:30078/',
|
||||
},
|
||||
{
|
||||
name: 'smart-video-analysis', // AI 智能分析仓
|
||||
entry:
|
||||
env === 'production'
|
||||
? '//localhost:30088/algorithm-warehouse/'
|
||||
: '//localhost:30088/',
|
||||
},
|
||||
{
|
||||
name: 'communal-facilities-pages', // 物料库
|
||||
entry: '//localhost:30098/communal-facilities-pages/',
|
||||
entry:
|
||||
env === 'production'
|
||||
? '//localhost:30098/communal-facilities-pages/'
|
||||
: '//localhost:30098/',
|
||||
},
|
||||
],
|
||||
lifeCycles: {
|
||||
|
Loading…
Reference in New Issue
Block a user