1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

added 404 page

This commit is contained in:
Fedor Katurov 2019-11-07 16:03:33 +07:00
parent f837924ad4
commit f0acb1ee66
5 changed files with 53 additions and 3 deletions

View file

@ -1,5 +1,6 @@
export const URLS = {
BASE: '/',
BORIS: '/boris',
AUTH: {
LOGIN: '/auth/login',
},
@ -7,6 +8,10 @@ export const URLS = {
EDITOR: '/examples/edit',
IMAGE: '/examples/image',
},
ERRORS: {
NOT_FOUND: '/lost',
BACKEND_DOWN: '/oopsie',
},
NODE_URL: (id: number | string) => `/post${id}`,
};