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 {
|
||||
base: '/foo/',
|
||||
base: '',
|
||||
define: {
|
||||
__DEV__: false
|
||||
},
|
||||
|
@ -80,7 +80,7 @@ export default function (api) {
|
||||
|
||||
const { main: options } = api.config?.qiankun || {};
|
||||
const masterHistoryType = api.config?.router?.mode || defaultHistoryType;
|
||||
const base = api.config.base || '/';
|
||||
const base = api.config.base;
|
||||
api.writeTmpFile({
|
||||
path: absMasterOptionsPath,
|
||||
content: `
|
||||
|
@ -3,9 +3,9 @@ export default (api) => {
|
||||
api.describe({
|
||||
key: 'base',
|
||||
config: {
|
||||
default: '/',
|
||||
default: '',
|
||||
schema(joi) {
|
||||
return joi.string();
|
||||
return joi.string().allow('');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -280,7 +280,7 @@ export default function (api) {
|
||||
runtimePath,
|
||||
routes,
|
||||
config: api.config,
|
||||
routerBase: api.config.base || '',
|
||||
routerBase: api.config.base,
|
||||
CREATE_HISTORY: historyType[api.config.router.mode] || 'createWebHashHistory'
|
||||
})
|
||||
});
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
|
||||
export default {
|
||||
base: '/foo/',
|
||||
base: '',
|
||||
define: {
|
||||
__DEV__: false
|
||||
},
|
||||
@ -12,7 +12,7 @@ export default {
|
||||
publicPath: '/',
|
||||
access: {
|
||||
roles: {
|
||||
admin: ["/", "https://www.baidu.com"]
|
||||
admin: ["/", "/store", "https://www.baidu.com"]
|
||||
}
|
||||
},
|
||||
request: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user