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: {
'enterfront.main': '/enterfront',
'link.enterfront.auth': '/auth',
'link.enterfront.account': '/account',
'link.enterfront.auth': '/enterfront/auth',
'link.enterfront.account': '/enterfront/account',
},
features: {
'undefined': {

View File

@ -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,