4 Commits

Author SHA1 Message Date
Nikolai Petukhov
626d556e1a 0.2.0 2024-09-14 13:29:56 +03:00
Nikolai Petukhov
d86fa96a3e upd routes again 2024-09-14 13:11:32 +03:00
Nikolai Petukhov
fed00edfd4 test routes 2024-09-14 12:58:07 +03:00
Nikolai Petukhov
aa40f3791b upd routes 2024-09-14 12:48:29 +03:00
9 changed files with 8 additions and 38 deletions

3
.gitignore vendored
View File

@@ -1 +1,2 @@
node_modules
node_modules
.idea

5
.idea/.gitignore generated vendored
View File

@@ -1,5 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/

12
.idea/front.iml generated
View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml generated
View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/front.iml" filepath="$PROJECT_DIR$/.idea/front.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated
View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

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

4
package-lock.json generated
View File

@@ -14,7 +14,7 @@
"react-router-dom": "^6.26.1",
"typescript": "^5.5.4"
},
"version": "0.1.0"
"version": "0.2.0"
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
@@ -7800,5 +7800,5 @@
}
}
},
"version": "0.1.0"
"version": "0.2.0"
}

View File

@@ -17,5 +17,5 @@
"clean": "rimraf dist"
},
"name": "enterfront",
"version": "0.1.0"
"version": "0.2.0"
}

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,