diff --git a/ijl.config.js b/ijl.config.js index 0e6e92c..8932df5 100644 --- a/ijl.config.js +++ b/ijl.config.js @@ -9,8 +9,8 @@ module.exports = { }, navigations: { 'enterfront.main': '/enterfront', - 'link.enterfront.auth': '/auth', - 'link.enterfront.account': '/account', + 'link.enterfront.auth': '/enterfront/auth', + 'link.enterfront.account': '/enterfront/account', }, features: { 'undefined': { diff --git a/src/__data__/urls.ts b/src/__data__/urls.ts index 8f419f3..5a951bd 100644 --- a/src/__data__/urls.ts +++ b/src/__data__/urls.ts @@ -3,7 +3,7 @@ import pkg from '../../package.json'; const baseUrl = getNavigationsValue(`${(pkg as any).name}.main`); const navs = getNavigations(); -const makeUrl = url => baseUrl + url; +const makeUrl = url => url; export const URLs = { baseUrl,