mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: base默认应该是空字符串
This commit is contained in:
parent
591b8c4f6c
commit
619acae65d
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
base: '/foo/',
|
base: '',
|
||||||
define: {
|
define: {
|
||||||
__DEV__: false
|
__DEV__: false
|
||||||
},
|
},
|
||||||
|
@ -80,7 +80,7 @@ export default function (api) {
|
|||||||
|
|
||||||
const { main: options } = api.config?.qiankun || {};
|
const { main: options } = api.config?.qiankun || {};
|
||||||
const masterHistoryType = api.config?.router?.mode || defaultHistoryType;
|
const masterHistoryType = api.config?.router?.mode || defaultHistoryType;
|
||||||
const base = api.config.base || '/';
|
const base = api.config.base;
|
||||||
api.writeTmpFile({
|
api.writeTmpFile({
|
||||||
path: absMasterOptionsPath,
|
path: absMasterOptionsPath,
|
||||||
content: `
|
content: `
|
||||||
|
@ -3,9 +3,9 @@ export default (api) => {
|
|||||||
api.describe({
|
api.describe({
|
||||||
key: 'base',
|
key: 'base',
|
||||||
config: {
|
config: {
|
||||||
default: '/',
|
default: '',
|
||||||
schema(joi) {
|
schema(joi) {
|
||||||
return joi.string();
|
return joi.string().allow('');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -280,7 +280,7 @@ export default function (api) {
|
|||||||
runtimePath,
|
runtimePath,
|
||||||
routes,
|
routes,
|
||||||
config: api.config,
|
config: api.config,
|
||||||
routerBase: api.config.base || '',
|
routerBase: api.config.base,
|
||||||
CREATE_HISTORY: historyType[api.config.router.mode] || 'createWebHashHistory'
|
CREATE_HISTORY: historyType[api.config.router.mode] || 'createWebHashHistory'
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
base: '/foo/',
|
base: '',
|
||||||
define: {
|
define: {
|
||||||
__DEV__: false
|
__DEV__: false
|
||||||
},
|
},
|
||||||
@ -12,7 +12,7 @@ export default {
|
|||||||
publicPath: '/',
|
publicPath: '/',
|
||||||
access: {
|
access: {
|
||||||
roles: {
|
roles: {
|
||||||
admin: ["/", "https://www.baidu.com"]
|
admin: ["/", "/store", "https://www.baidu.com"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
request: {
|
request: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user