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 { export default {
base: '/foo/', base: '',
define: { define: {
__DEV__: false __DEV__: false
}, },

View File

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

View File

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

View File

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

View File

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