upd routes again

This commit is contained in:
Nikolai Petukhov 2024-09-14 13:11:32 +03:00
parent fed00edfd4
commit d86fa96a3e
2 changed files with 3 additions and 3 deletions

View File

@ -9,8 +9,8 @@ module.exports = {
}, },
navigations: { navigations: {
'enterfront.main': '/enterfront', 'enterfront.main': '/enterfront',
'link.enterfront.auth': '/auth', 'link.enterfront.auth': '/enterfront/auth',
'link.enterfront.account': '/account', 'link.enterfront.account': '/enterfront/account',
}, },
features: { features: {
'undefined': { 'undefined': {

View File

@ -3,7 +3,7 @@ import pkg from '../../package.json';
const baseUrl = getNavigationsValue(`${(pkg as any).name}.main`); const baseUrl = getNavigationsValue(`${(pkg as any).name}.main`);
const navs = getNavigations(); const navs = getNavigations();
const makeUrl = url => baseUrl + url; const makeUrl = url => url;
export const URLs = { export const URLs = {
baseUrl, baseUrl,