fix: base默认应该是空字符串

This commit is contained in:
万纯 2021-03-25 21:37:16 +08:00
parent 591b8c4f6c
commit 619acae65d
5 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
export default {
base: '/foo/',
base: '',
define: {
__DEV__: false
},

View File

@ -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: `

View File

@ -3,9 +3,9 @@ export default (api) => {
api.describe({
key: 'base',
config: {
default: '/',
default: '',
schema(joi) {
return joi.string();
return joi.string().allow('');
}
}
});

View File

@ -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'
})
});

View File

@ -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: {